From 357ae9de4458fbe585e976a9f48b23dc5162fefb Mon Sep 17 00:00:00 2001 From: Honney Date: Sun, 31 May 2026 14:54:27 +0200 Subject: [PATCH] added install script --- colors/Colors.qml | 57 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 colors/Colors.qml diff --git a/colors/Colors.qml b/colors/Colors.qml new file mode 100644 index 0000000..27167c4 --- /dev/null +++ b/colors/Colors.qml @@ -0,0 +1,57 @@ +pragma Singleton +import QtQuick 2.15 + +QtObject { + + // ===== PRIMARY ===== + readonly property color primary: "#c7cc79" + readonly property color primary_fg: "#303300" + readonly property color primaryContainer: "#464a02" + readonly property color primaryContainer_fg: "#e3e892" + + // ===== SECONDARY ===== + readonly property color secondary: "#c8c9a6" + readonly property color secondary_fg: "#303219" + readonly property color secondaryContainer: "#47492e" + readonly property color secondaryContainer_fg: "#e4e5c0" + + // ===== TERTIARY ===== + readonly property color tertiary: "#a3d0c0" + readonly property color tertiary_fg: "#08372c" + readonly property color tertiaryContainer: "#234e42" + readonly property color tertiaryContainer_fg: "#beecdb" + + // ===== ERROR ===== + readonly property color error: "#ffb4ab" + readonly property color error_fg: "#690005" + readonly property color errorContainer: "#93000a" + readonly property color errorContainer_fg: "#ffdad6" + + // ===== BACKGROUND / SURFACE ===== + readonly property color background: "#14140c" + readonly property color background_fg: "#e5e3d6" + + readonly property color surface: "#14140c" + readonly property color surface_fg: "#e5e3d6" + + readonly property color surfaceVariant: "#47473b" + readonly property color surfaceVariant_fg: "#c9c7b6" + + // ===== SURFACE CONTAINERS ===== + readonly property color surfaceContainerLowest: "#0e0f08" + readonly property color surfaceContainerLow: "#1c1c14" + readonly property color surfaceContainer: "#202018" + readonly property color surfaceContainerHigh: "#2a2a22" + readonly property color surfaceContainerHighest: "#35352c" + + // ===== OUTLINE / UTILITY ===== + readonly property color outline: "#929182" + readonly property color outlineVariant: "#47473b" + readonly property color shadowColor: "#000000" + readonly property color scrimColor: "#000000" + + // ===== INVERSE ===== + readonly property color inverseSurface: "#e5e3d6" + readonly property color inverseSurface_fg: "#313128" + readonly property color inversePrimary: "#5e621b" +}