Added correct example Colors

This commit is contained in:
Hannes
2026-02-18 19:16:25 +01:00
parent 3e075d22bc
commit 9ecea25efb
2 changed files with 18 additions and 19 deletions
-1
View File
@@ -1 +0,0 @@
Colors.qml
+18 -18
View File
@@ -4,22 +4,22 @@ import QtQuick 2.15
QtObject { QtObject {
// ===== PRIMARY ===== // ===== PRIMARY =====
readonly property color primary: "#d0ca74" readonly property color primary: "#ceca75"
readonly property color primary_fg: "#343200" readonly property color primary_fg: "#333200"
readonly property color primaryContainer: "#4c4800" readonly property color primaryContainer: "#4b4900"
readonly property color primaryContainer_fg: "#ece68d" readonly property color primaryContainer_fg: "#eae68e"
// ===== SECONDARY ===== // ===== SECONDARY =====
readonly property color secondary: "#ccc8a3" readonly property color secondary: "#cbc8a4"
readonly property color secondary_fg: "#333118" readonly property color secondary_fg: "#333118"
readonly property color secondaryContainer: "#4a482c" readonly property color secondaryContainer: "#49482c"
readonly property color secondaryContainer_fg: "#e9e4be" readonly property color secondaryContainer_fg: "#e8e4bf"
// ===== TERTIARY ===== // ===== TERTIARY =====
readonly property color tertiary: "#a5d0ba" readonly property color tertiary: "#a5d0bb"
readonly property color tertiary_fg: "#0e3728" readonly property color tertiary_fg: "#0c3729"
readonly property color tertiaryContainer: "#274e3d" readonly property color tertiaryContainer: "#264e3e"
readonly property color tertiaryContainer_fg: "#c1ecd5" readonly property color tertiaryContainer_fg: "#c0ecd7"
// ===== ERROR ===== // ===== ERROR =====
readonly property color error: "#ffb4ab" readonly property color error: "#ffb4ab"
@@ -29,19 +29,19 @@ QtObject {
// ===== BACKGROUND / SURFACE ===== // ===== BACKGROUND / SURFACE =====
readonly property color background: "#14140c" readonly property color background: "#14140c"
readonly property color background_fg: "#e7e2d5" readonly property color background_fg: "#e6e2d5"
readonly property color surface: "#14140c" readonly property color surface: "#14140c"
readonly property color surface_fg: "#e7e2d5" readonly property color surface_fg: "#e6e2d5"
readonly property color surfaceVariant: "#49473a" readonly property color surfaceVariant: "#49473a"
readonly property color surfaceVariant_fg: "#cbc7b5" readonly property color surfaceVariant_fg: "#cac7b6"
// ===== SURFACE CONTAINERS ===== // ===== SURFACE CONTAINERS =====
readonly property color surfaceContainerLowest: "#0f0e07" readonly property color surfaceContainerLowest: "#0f0e07"
readonly property color surfaceContainerLow: "#1d1c14" readonly property color surfaceContainerLow: "#1c1c14"
readonly property color surfaceContainer: "#212018" readonly property color surfaceContainer: "#212018"
readonly property color surfaceContainerHigh: "#2b2a21" readonly property color surfaceContainerHigh: "#2b2a22"
readonly property color surfaceContainerHighest: "#36352c" readonly property color surfaceContainerHighest: "#36352c"
// ===== OUTLINE / UTILITY ===== // ===== OUTLINE / UTILITY =====
@@ -51,7 +51,7 @@ QtObject {
readonly property color scrimColor: "#000000" readonly property color scrimColor: "#000000"
// ===== INVERSE ===== // ===== INVERSE =====
readonly property color inverseSurface: "#e7e2d5" readonly property color inverseSurface: "#e6e2d5"
readonly property color inverseSurface_fg: "#323128" readonly property color inverseSurface_fg: "#323128"
readonly property color inversePrimary: "#656015" readonly property color inversePrimary: "#636116"
} }