mirror of
https://github.com/caelestia-dots/cli.git
synced 2026-06-06 23:39:29 -05:00
scheme: success and error colours
This commit is contained in:
@@ -106,10 +106,14 @@ if __name__ == "__main__":
|
||||
|
||||
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:
|
||||
print(colour)
|
||||
|
||||
for layer in sys.argv[4:]:
|
||||
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
|
||||
# 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))
|
||||
|
||||
for i in (seq 1 (count $colours))
|
||||
|
||||
Reference in New Issue
Block a user