@@ -38,7 +38,7 @@ local p = Color.new "#DD97F1"
3838
3939local offset = 30
4040
41- print " DARK / ORIGINAL / LIGHT - ALT "
41+ print " DARK / ORIGINAL / LIGHT - ALT\n "
4242io.write (tostring (bl :darken_2 (offset )))
4343io.write (tostring (w :darken_2 (offset )))
4444io.write (tostring (r :darken_2 (offset )))
@@ -70,9 +70,9 @@ io.write(tostring(g:lighten_2(offset)))
7070io.write (tostring (c :lighten_2 (offset )))
7171io.write (tostring (b :lighten_2 (offset )))
7272io.write (tostring (p :lighten_2 (offset )))
73- io.write " \n\n "
73+ io.write " \n "
7474
75- print " DARK / ORIGINAL / LIGHT "
75+ print " \n DARK / ORIGINAL / LIGHT\n "
7676io.write (tostring (bl :darken (offset )))
7777io.write (tostring (w :darken (offset )))
7878io.write (tostring (r :darken (offset )))
@@ -106,7 +106,7 @@ io.write(tostring(b:lighten(offset)))
106106io.write (tostring (p :lighten (offset )))
107107io.write " \n "
108108
109- print " \n BLEND"
109+ print " \n BLEND\n "
110110io.write (tostring (bl :blend (r , 0.5 )))
111111io.write (tostring (bl :blend (o , 0.5 )))
112112io.write (tostring (bl :blend (y , 0.5 )))
@@ -124,7 +124,7 @@ io.write(tostring(w:blend(b, 0.5)))
124124io.write (tostring (w :blend (p , 0.5 )))
125125io.write " \n "
126126
127- print " \n DESATURATION"
127+ print " \n DESATURATION\n "
128128io.write (tostring (r :desat (0 )))
129129io.write (tostring (o :desat (0 )))
130130io.write (tostring (y :desat (0 )))
@@ -152,7 +152,7 @@ io.write(tostring(b:desat(1)))
152152io.write (tostring (p :desat (1 )))
153153io.write " \n "
154154
155- print " \n SATURATION"
155+ print " \n SATURATION\n "
156156io.write (tostring (r :sat (0 )))
157157io.write (tostring (o :sat (0 )))
158158io.write (tostring (y :sat (0 )))
@@ -178,3 +178,4 @@ io.write(tostring(g:sat(1)))
178178io.write (tostring (c :sat (1 )))
179179io.write (tostring (b :sat (1 )))
180180io.write (tostring (p :sat (1 )))
181+ io.write " \n "
0 commit comments