diff options
| author | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-12-31 19:12:38 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-12-31 19:22:54 (GMT) |
| commit | ad9714b0dc2f2053d3d31a8cd013d456fefdc93d (patch) | |
| tree | af166d2ae2f69beb637dd036dc41286e64f81472 /wasp/wasp.py | |
| parent | 1eada36ff4953cb6b52e249c2908e5c74a7917d1 (diff) | |
manager: Recategorize the theme labels for apps
By default bright and mid are white/grey tones, the ui widgets are
blue and the spot colours are different variants of orange.
Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
Diffstat (limited to 'wasp/wasp.py')
| -rw-r--r-- | wasp/wasp.py | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/wasp/wasp.py b/wasp/wasp.py index 488f92f..de572e5 100644 --- a/wasp/wasp.py +++ b/wasp/wasp.py @@ -123,10 +123,12 @@ class Manager(): b'\x7b\xef' # battery b'\xe7\x3c' # status-clock b'\x7b\xef' # notify-icon - b'\xb5\xb6' # accent-mid - b'\xbd\xb6' # accent-lo - b'\xff\xff' # accent-hi - b'\x39\xff' # slider-default + b'\xff\xff' # bright + b'\xbd\xb6' # mid + b'\x39\xff' # ui + b'\xff\x00' # spot1 + b'\xdd\xd0' # spot2 + b'\x00\x0f' # contrast ) self.blank_after = 15 @@ -542,10 +544,12 @@ class Manager(): "battery", "status-clock", "notify-icon", - "accent-mid", - "accent-lo", - "accent-hi", - "slider-default") + "bright", + "mid", + "ui", + "spot1", + "spot2", + "contrast") if theme_part not in theme_parts: raise IndexError('Theme part {} does not exist'.format(theme_part)) idx = theme_parts.index(theme_part) * 2 |
