Files
qyouvideo/QYRComponents/Colors.qml

57 lines
1.5 KiB
QML
Raw Normal View History

2025-10-11 02:30:58 +02:00
pragma Singleton
import QtQuick 6.8
Item {
QtObject {
id: themes
2025-10-11 17:55:56 +02:00
readonly property var light: ({
text: "#1f1f1f",
primary: "#007bff",
primaryAlt: "#0056b3",
secondary: "#009eff",
secondaryAlt: "#0076b3",
2025-10-11 17:55:56 +02:00
surface1: "#323232",
surface0: "#282828",
2025-10-11 02:30:58 +02:00
background: "#f4f4f4"
2025-10-11 17:55:56 +02:00
})
readonly property var dark: ({
text: "#f4f4f4",
primary: "#007bff",
primaryAlt: "#0056b3",
secondary: "#009eff",
secondaryAlt: "#0076b3",
surface1: "#373737",
surface0: "#2a2a2a",
2025-10-11 02:30:58 +02:00
background: "#1f1f1f"
2025-10-11 17:55:56 +02:00
})
2025-10-11 02:30:58 +02:00
}
readonly property string fontFamily: "Arial"
2025-10-11 17:55:56 +02:00
readonly property var fontSize: ({
h1: 26,
2025-10-11 17:55:56 +02:00
h2: 24,
h3: 18,
h4: 16,
h5: 12,
// h6: 10,
p: 12,
base: 12,
button: 12
2025-10-11 17:55:56 +02:00
})
2025-10-11 02:30:58 +02:00
property var currentTheme: themes.dark
2025-10-11 17:55:56 +02:00
// property alias themes: themes
2025-10-11 02:30:58 +02:00
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
2025-10-11 17:55:56 +02:00
readonly property string surface1: currentTheme.surface1
readonly property string surface0: currentTheme.surface0
2025-10-11 02:30:58 +02:00
readonly property string background: currentTheme.background
}