diff options
| author | ailurux <ailuruxx@gmail.com> | 2024-09-12 21:09:05 +1000 |
|---|---|---|
| committer | ailurux <ailuruxx@gmail.com> | 2024-09-12 21:09:05 +1000 |
| commit | df8de179e0212a2a9c46f770c228b514d08a774c (patch) | |
| tree | f543a9597c7204dff2a51f0e3a27fdac9ce2ae5d /lua/theme_dark.lua | |
| parent | d4bad111302f4603386fe4462a0b29590822cff8 (diff) | |
| parent | 9a47e43ab72daa96bfb3e95e95c30e5703f39397 (diff) | |
| download | tangara-fw-df8de179e0212a2a9c46f770c228b514d08a774c.tar.gz | |
Merge branch 'main' into daniel/persistent-positions
Diffstat (limited to 'lua/theme_dark.lua')
| -rw-r--r-- | lua/theme_dark.lua | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lua/theme_dark.lua b/lua/theme_dark.lua index 41fddf81..ac1044c6 100644 --- a/lua/theme_dark.lua +++ b/lua/theme_dark.lua @@ -38,6 +38,7 @@ local theme_dark = { }, button = { {lvgl.PART.MAIN, lvgl.Style { + bg_opa = lvgl.OPA(100), pad_left = 2, pad_right = 2, pad_top = 1, @@ -217,6 +218,12 @@ local theme_dark = { radius = 4 }}, }, + bluetooth_icon = { + {lvgl.PART.MAIN, lvgl.Style { + image_recolor_opa = 255, + image_recolor = text_color, + }}, + }, battery = { {lvgl.PART.MAIN, lvgl.Style { image_recolor_opa = 0, @@ -240,6 +247,18 @@ local theme_dark = { image_recolor = "#fdd833", }}, }, + battery_charge_outline = { + {lvgl.PART.MAIN, lvgl.Style { + image_recolor_opa = 255, + image_recolor = background_color, + }}, + }, + regulatory_icons = { + {lvgl.PART.MAIN, lvgl.Style { + image_recolor_opa = 255, + image_recolor = text_color, + }}, + }, } return theme_dark |
