summaryrefslogtreecommitdiff
path: root/lua/theme.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/theme.lua')
-rw-r--r--lua/theme.lua23
1 files changed, 0 insertions, 23 deletions
diff --git a/lua/theme.lua b/lua/theme.lua
deleted file mode 100644
index 9c808946..00000000
--- a/lua/theme.lua
+++ /dev/null
@@ -1,23 +0,0 @@
-local lvgl = require("lvgl")
-local font = require("font")
-
-local theme = {
- list_item = lvgl.Style {
- pad_left = 4,
- pad_right = 4,
- },
- list_heading = lvgl.Style {
- pad_top = 4,
- pad_left = 4,
- pad_right = 4,
- text_font = font.fusion_10,
- text_align = lvgl.ALIGN.CENTER,
- },
- settings_title = lvgl.Style {
- pad_top = 2,
- pad_bottom = 4,
- text_font = font.fusion_10,
- }
-}
-
-return theme