summaryrefslogtreecommitdiff
path: root/lua/theme_dark.lua
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2024-09-13 10:17:34 +1000
committerjacqueline <me@jacqueline.id.au>2024-09-13 10:17:34 +1000
commit1106012bde558dab5e192c2129178d44f80b9e4e (patch)
tree12e57cd25efda02a1c6dd58250b3fe8a644434de /lua/theme_dark.lua
parentd8b9e65e68214b4aa2bb24ddae3602d5788bc469 (diff)
parenta174d76aa16e09ddfc2ce67393c92ed947a817a5 (diff)
downloadtangara-fw-1106012bde558dab5e192c2129178d44f80b9e4e.tar.gz
Merge branch 'main' into jqln/tts
Diffstat (limited to 'lua/theme_dark.lua')
-rw-r--r--lua/theme_dark.lua19
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