From a3c1b1d753e0ef2bfbef2f36d102cf82f0dc0816 Mon Sep 17 00:00:00 2001 From: MasterAcnolo <68693319+MasterAcnolo@users.noreply.github.com> Date: Sat, 11 Apr 2026 14:01:39 +0200 Subject: [PATCH] Fix: Settings Secondary Color in LIght THeme --- public/styles/theme/light-theme.css | 2 +- theme/template.theme.json | 82 +++++++++++++++++++++++++++++ 2 files changed, 83 insertions(+), 1 deletion(-) create mode 100644 theme/template.theme.json diff --git a/public/styles/theme/light-theme.css b/public/styles/theme/light-theme.css index 4b1d2b1..1ce4b7d 100644 --- a/public/styles/theme/light-theme.css +++ b/public/styles/theme/light-theme.css @@ -42,7 +42,7 @@ body.light { --settings-button-text-color: var(--default-text-color); --settings-bg-primary-color: #cbcbcb; - --settings-bg-secondary-color: #cbcbcb; + --settings-bg-secondary-color: #b8b8b8; --settings-text-color: var(--default-text-color); --settings-subtitle-color: #656565; } diff --git a/theme/template.theme.json b/theme/template.theme.json new file mode 100644 index 0000000..f867f2d --- /dev/null +++ b/theme/template.theme.json @@ -0,0 +1,82 @@ +{ + "meta": { + "name": "", + "author": "", + "version": "1.0.0", + "formatVersion": "1.0" + }, + + "style": { + "background": { + "image": "", + "size": "cover", + "position": "center", + "attachment": "fixed" + }, + + "colors": { + "background": "", + "text": { + "default": "", + "subtitle": "", + "mp3": "" + } + }, + + "form": { + "background": "", + "input": { + "background": "", + "border": "", + "borderFocus": "", + "text": "", + "placeholder": "" + }, + "button": { + "background": "", + "text": "", + "hover": "" + } + }, + + "checkbox": { + "background": { + "default": "", + "checked": "" + }, + "checkmarkBorder": "", + "pulse": "" + }, + + "download": { + "status": "" + }, + + "videoInfo": { + "background": "", + "text": "", + "heading": "", + "list": "", + "strong": "", + "link": "", + "linkHover": "" + }, + + "playlist": { + "background": "" + }, + + "settings": { + "button": { + "background": "", + "text": "" + }, + "background": { + "primary": "", + "secondary": "" + }, + "text": "", + "subtitle": "" + } + } +} \ No newline at end of file