summaryrefslogtreecommitdiff
path: root/lua/settings.lua
diff options
context:
space:
mode:
authorailurux <ailuruxx@gmail.com>2024-09-09 00:24:08 +0000
committercooljqln <cooljqln@noreply.codeberg.org>2024-09-09 00:24:08 +0000
commit45937ac6486a6258bd48359db93877f2633336d9 (patch)
tree0ab4cc1dfb7e731862bb4127cba76cd5c86f13d3 /lua/settings.lua
parentdacf3efc45677343479b4d3ff9502504b211639a (diff)
downloadtangara-fw-45937ac6486a6258bd48359db93877f2633336d9.tar.gz
High contrast theme + Icon Improvements (#100)
Updated settings icon, rounded the circular play/pause icons, and addition of a new high contrast theme. Would be good to get feedback on the high contrast theme at this stage, as my intention is to use it as the basis for other 2-colour themes. One issue I'm aware of is the charge indicator when recoloured to black is not very legible on the black battery icon. I am planning on adding an additonal outline image that can be recoloured to the background colour to make it stand out more. Happy to fix that in a later PR or I can add it now but it will take a bit of work. Reviewed-on: https://codeberg.org/cool-tech-zone/tangara-fw/pulls/100 Co-authored-by: ailurux <ailuruxx@gmail.com> Co-committed-by: ailurux <ailuruxx@gmail.com>
Diffstat (limited to 'lua/settings.lua')
-rw-r--r--lua/settings.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/settings.lua b/lua/settings.lua
index 934d32a2..9b77274d 100644
--- a/lua/settings.lua
+++ b/lua/settings.lua
@@ -313,6 +313,7 @@ local ThemeSettings = SettingsScreen:new {
local themeOptions = {}
themeOptions["Dark"] = "/lua/theme_dark.lua"
themeOptions["Light"] = "/lua/theme_light.lua"
+ themeOptions["High Contrast"] = "/lua/theme_hicon.lua"
-- Parse theme directory for more themes
local theme_dir_iter = filesystem.iterator("/.themes/")