scheme: success and error colours

This commit is contained in:
2 * r + 2 * t
2025-02-25 17:53:15 +11:00
parent 06522bf717
commit 345d206c6f
7 changed files with 16 additions and 2 deletions
+2
View File
@@ -24,4 +24,6 @@ surface0 414559
base 303446
mantle 292c3c
crust 232634
success a6d189
error e78284
accent 99d1db
+2
View File
@@ -24,4 +24,6 @@ surface0 ccd0da
base eff1f5
mantle e6e9ef
crust dce0e8
success 40a02b
error d20f39
accent 1e66f5
+2
View File
@@ -24,4 +24,6 @@ surface0 363a4f
base 24273a
mantle 1e2030
crust 181926
success a6da95
error ed8796
accent b7bdf8
+2
View File
@@ -24,4 +24,6 @@ surface0 313244
base 1e1e2e
mantle 181825
crust 11111b
success a6e3a1
error f38ba8
accent cba6f7
+2
View File
@@ -24,4 +24,6 @@ surface0 30343e
base 282c34
mantle 21242b
crust 1e2126
success 98c379
error be5046
accent d19a66
+5 -1
View File
@@ -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)
+1 -1
View File
@@ -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))