Files
quickshell/colors/Colors.qml
T

58 lines
2.1 KiB
QML

pragma Singleton
import QtQuick 2.15
QtObject {
// ===== PRIMARY =====
readonly property color primary: "#d0ca74"
readonly property color primary_fg: "#343200"
readonly property color primaryContainer: "#4c4800"
readonly property color primaryContainer_fg: "#ece68d"
// ===== SECONDARY =====
readonly property color secondary: "#ccc8a3"
readonly property color secondary_fg: "#333118"
readonly property color secondaryContainer: "#4a482c"
readonly property color secondaryContainer_fg: "#e9e4be"
// ===== TERTIARY =====
readonly property color tertiary: "#a5d0ba"
readonly property color tertiary_fg: "#0e3728"
readonly property color tertiaryContainer: "#274e3d"
readonly property color tertiaryContainer_fg: "#c1ecd5"
// ===== 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: "#e7e2d5"
readonly property color surface: "#14140c"
readonly property color surface_fg: "#e7e2d5"
readonly property color surfaceVariant: "#49473a"
readonly property color surfaceVariant_fg: "#cbc7b5"
// ===== SURFACE CONTAINERS =====
readonly property color surfaceContainerLowest: "#0f0e07"
readonly property color surfaceContainerLow: "#1d1c14"
readonly property color surfaceContainer: "#212018"
readonly property color surfaceContainerHigh: "#2b2a21"
readonly property color surfaceContainerHighest: "#36352c"
// ===== OUTLINE / UTILITY =====
readonly property color outline: "#949181"
readonly property color outlineVariant: "#49473a"
readonly property color shadowColor: "#000000"
readonly property color scrimColor: "#000000"
// ===== INVERSE =====
readonly property color inverseSurface: "#e7e2d5"
readonly property color inverseSurface_fg: "#323128"
readonly property color inversePrimary: "#656015"
}