diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-02-25 17:53:15 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-02-25 17:53:15 +1100 |
| commit | 345d206c6f5b9602900176d57a89eee5fa489152 (patch) | |
| tree | 5d10bb917dfe32d7e2cf405e8404644dc97c68d0 /scheme/autoadjust.py | |
| parent | gen-scheme: fix arg parsing (diff) | |
| download | caelestia-cli-345d206c6f5b9602900176d57a89eee5fa489152.tar.gz caelestia-cli-345d206c6f5b9602900176d57a89eee5fa489152.tar.bz2 caelestia-cli-345d206c6f5b9602900176d57a89eee5fa489152.zip | |
scheme: success and error colours
Diffstat (limited to 'scheme/autoadjust.py')
| -rwxr-xr-x | scheme/autoadjust.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scheme/autoadjust.py b/scheme/autoadjust.py index db70138..6da0cf9 100755 --- a/scheme/autoadjust.py +++ b/scheme/autoadjust.py @@ -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) |