Prepare player and settings, create branding

This commit is contained in:
Dark Steveneq
2025-10-12 03:10:14 +02:00
parent 7b6e749bca
commit e54a3182a3
15 changed files with 270 additions and 68 deletions

View File

@@ -10,6 +10,8 @@ Item {
text: "#1f1f1f",
primary: "#007bff",
primaryAlt: "#0056b3",
secondary: "#009eff",
secondaryAlt: "#0076b3",
surface1: "#323232",
surface0: "#282828",
background: "#f4f4f4"
@@ -19,6 +21,8 @@ Item {
text: "#f4f4f4",
primary: "#007bff",
primaryAlt: "#0056b3",
secondary: "#009eff",
secondaryAlt: "#0076b3",
surface1: "#323232",
surface0: "#282828",
background: "#1f1f1f"
@@ -43,6 +47,8 @@ Item {
readonly property string text: currentTheme.text
readonly property string primary: currentTheme.primary
readonly property string primaryAlt: currentTheme.primaryAlt
readonly property string secondary: currentTheme.secondary
readonly property string secondaryAlt: currentTheme.secondaryAlt
readonly property string surface1: currentTheme.surface1
readonly property string surface0: currentTheme.surface0
readonly property string background: currentTheme.background