mirror of
https://github.com/caelestia-dots/cli.git
synced 2026-06-09 08:49:29 -05:00
scheme: success and error colours
This commit is contained in:
@@ -24,4 +24,6 @@ surface0 414559
|
|||||||
base 303446
|
base 303446
|
||||||
mantle 292c3c
|
mantle 292c3c
|
||||||
crust 232634
|
crust 232634
|
||||||
|
success a6d189
|
||||||
|
error e78284
|
||||||
accent 99d1db
|
accent 99d1db
|
||||||
@@ -24,4 +24,6 @@ surface0 ccd0da
|
|||||||
base eff1f5
|
base eff1f5
|
||||||
mantle e6e9ef
|
mantle e6e9ef
|
||||||
crust dce0e8
|
crust dce0e8
|
||||||
|
success 40a02b
|
||||||
|
error d20f39
|
||||||
accent 1e66f5
|
accent 1e66f5
|
||||||
@@ -24,4 +24,6 @@ surface0 363a4f
|
|||||||
base 24273a
|
base 24273a
|
||||||
mantle 1e2030
|
mantle 1e2030
|
||||||
crust 181926
|
crust 181926
|
||||||
|
success a6da95
|
||||||
|
error ed8796
|
||||||
accent b7bdf8
|
accent b7bdf8
|
||||||
@@ -24,4 +24,6 @@ surface0 313244
|
|||||||
base 1e1e2e
|
base 1e1e2e
|
||||||
mantle 181825
|
mantle 181825
|
||||||
crust 11111b
|
crust 11111b
|
||||||
|
success a6e3a1
|
||||||
|
error f38ba8
|
||||||
accent cba6f7
|
accent cba6f7
|
||||||
@@ -24,4 +24,6 @@ surface0 30343e
|
|||||||
base 282c34
|
base 282c34
|
||||||
mantle 21242b
|
mantle 21242b
|
||||||
crust 1e2126
|
crust 1e2126
|
||||||
|
success 98c379
|
||||||
|
error be5046
|
||||||
accent d19a66
|
accent d19a66
|
||||||
@@ -106,10 +106,14 @@ if __name__ == "__main__":
|
|||||||
|
|
||||||
colours = smart_sort(colours, base) # TODO: optional smart sort
|
colours = smart_sort(colours, base) # TODO: optional smart sort
|
||||||
|
|
||||||
mix_colours(colours, base, 0.5) # TODO: customize mixing from config
|
mix_colours(colours, base, 0) # TODO: customize mixing from config
|
||||||
|
|
||||||
for colour in colours:
|
for colour in colours:
|
||||||
print(colour)
|
print(colour)
|
||||||
|
|
||||||
for layer in sys.argv[4:]:
|
for layer in sys.argv[4:]:
|
||||||
print(layer.split(" ")[0])
|
print(layer.split(" ")[0])
|
||||||
|
|
||||||
|
# Success and error colours # TODO: customize mixing
|
||||||
|
print(mix(colours[8], base[8], 0.9)) # Success (green)
|
||||||
|
print(mix(colours[4], base[4], 0.9)) # Error (red)
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ echo -n $colour_scheme > $C_STATE/scheme/dynamic-mode.txt
|
|||||||
|
|
||||||
# 2nd line except first element is the palette
|
# 2nd line except first element is the palette
|
||||||
# The first element in lines 3+ are the layers
|
# The first element in lines 3+ are the layers
|
||||||
set -l names rosewater flamingo pink mauve red maroon peach yellow green teal sky sapphire blue lavender text subtext1 subtext0 overlay2 overlay1 overlay0 surface2 surface1 surface0 base mantle crust
|
set -l names rosewater flamingo pink mauve red maroon peach yellow green teal sky sapphire blue lavender text subtext1 subtext0 overlay2 overlay1 overlay0 surface2 surface1 surface0 base mantle crust success error
|
||||||
set -l colours ($src/autoadjust.py $colour_scheme (okolors $img -k 15 -w 0 -l $light_vals))
|
set -l colours ($src/autoadjust.py $colour_scheme (okolors $img -k 15 -w 0 -l $light_vals))
|
||||||
|
|
||||||
for i in (seq 1 (count $colours))
|
for i in (seq 1 (count $colours))
|
||||||
|
|||||||
Reference in New Issue
Block a user