From 235efb0b97f26c7f3be0e8d89db994b83038bf1a Mon Sep 17 00:00:00 2001 From: admar Date: Mon, 29 May 2023 12:41:36 +0200 Subject: [PATCH] Forgot to add theme.json files --- themes/Dark/theme.json | 25 +++++++++++++++++++++++++ themes/Light/theme.json | 25 +++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 themes/Dark/theme.json create mode 100644 themes/Light/theme.json diff --git a/themes/Dark/theme.json b/themes/Dark/theme.json new file mode 100644 index 0000000..422f4a2 --- /dev/null +++ b/themes/Dark/theme.json @@ -0,0 +1,25 @@ +{ + "name": "Dark", + "color_background": [0, 0, 0], + "color_shade": [0.1, 0.1, 0.1], + "color_clock_hands_hours": [0.9, 0.9, 0.9], + "color_clock_hands_minutes": [0.9, 0.9, 0.9], + "color_clock_hands_seconds": [0.9, 0.9, 0.9], + "color_alarm_hands_hours": [0.9, 0.0, 0.0], + "color_alarm_hands_minutes": [0.9, 0.0, 0.0], + "color_alarm_hands_seconds": [0.9, 0.0, 0.0], + "color_font": [1, 1, 1], + "color_numbers": [1, 1, 1], + "color_button": [0.2, 0.2, 0.2, 1], + "color_funky": [0.5, 0.2, 0.1, 0.2], + "icon_light_off": "themes/Dark/light_off.png", + "icon_light_reading": "themes/Dark/light_reading.png", + "icon_light_sunrise": "themes/Dark/light_sunrise.png", + "icon_light_on": "themes/Dark/light_on.png", + "icon_media_playing": "themes/Dark/media_playing.png", + "icon_media_stopped": "themes/Dark/media_stopped.png", + "icon_alarm_on": "themes/Dark/alarm_on.png", + "icon_alarm_off": "themes/Dark/alarm_off.png", + "icon_settings_visible": "themes/Dark/settings_visible.png", + "icon_settings_not_visible": "themes/Dark/settings_not_visible.png" +} diff --git a/themes/Light/theme.json b/themes/Light/theme.json new file mode 100644 index 0000000..e52bbc8 --- /dev/null +++ b/themes/Light/theme.json @@ -0,0 +1,25 @@ +{ + "name": "Light", + "color_background": [1, 1, 1], + "color_shade": [0.9, 0.9, 0.9], + "color_clock_hands_hours": [0.1, 0.1, 0.1], + "color_clock_hands_minutes": [0.1, 0.1, 0.1], + "color_clock_hands_seconds": [0.1, 0.1, 0.1], + "color_alarm_hands_hours": [0.9, 0.0, 0.0], + "color_alarm_hands_minutes": [0.9, 0.0, 0.0], + "color_alarm_hands_seconds": [0.9, 0.0, 0.0], + "color_font": [0, 0, 0], + "color_numbers": [0, 0, 0], + "color_button": [0.8, 0.8, 0.8, 1], + "color_funky": [0.1, 0.2, 0.5, 0.2], + "icon_light_off": "themes/Light/light_off.png", + "icon_light_reading": "themes/Light/light_reading.png", + "icon_light_sunrise": "themes/Light/light_sunrise.png", + "icon_light_on": "themes/Light/light_on.png", + "icon_media_playing": "themes/Light/media_playing.png", + "icon_media_stopped": "themes/Light/media_stopped.png", + "icon_alarm_on": "themes/Light/alarm_on.png", + "icon_alarm_off": "themes/Light/alarm_off.png", + "icon_settings_visible": "themes/Light/settings_visible.png", + "icon_settings_not_visible": "themes/Light/settings_not_visible.png" +}