summaryrefslogtreecommitdiff
path: root/lua/theme.lua
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2024-01-06 09:55:38 +1100
committerjacqueline <me@jacqueline.id.au>2024-01-06 09:55:38 +1100
commit0db85f5e9e7f74922e3fad3c12675f7f30c3a1db (patch)
tree0e1757dabe93425d7f76e2352828103b2634c556 /lua/theme.lua
parente12a68a74d9527d4becde122da4ff1ad6550564e (diff)
downloadtangara-fw-0db85f5e9e7f74922e3fad3c12675f7f30c3a1db.tar.gz
move default theme into styles, for easier lua overrides
Diffstat (limited to 'lua/theme.lua')
-rw-r--r--lua/theme.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/theme.lua b/lua/theme.lua
new file mode 100644
index 00000000..ff3aeb7b
--- /dev/null
+++ b/lua/theme.lua
@@ -0,0 +1,10 @@
+local lvgl = require("lvgl")
+
+local theme = {
+ list_item = lvgl.Style {
+ pad_left = 4,
+ pad_right = 4,
+ },
+}
+
+return theme