58 lines
2.1 KiB
Plaintext
58 lines
2.1 KiB
Plaintext
pragma Singleton
|
|
import QtQuick 2.15
|
|
|
|
QtObject {
|
|
|
|
// ===== PRIMARY =====
|
|
readonly property color primary: "#cbcb77"
|
|
readonly property color primary_fg: "#323200"
|
|
readonly property color primaryContainer: "#494900"
|
|
readonly property color primaryContainer_fg: "#e7e790"
|
|
|
|
// ===== SECONDARY =====
|
|
readonly property color secondary: "#cac8a5"
|
|
readonly property color secondary_fg: "#323218"
|
|
readonly property color secondaryContainer: "#48482d"
|
|
readonly property color secondaryContainer_fg: "#e6e4bf"
|
|
|
|
// ===== TERTIARY =====
|
|
readonly property color tertiary: "#a4d0bd"
|
|
readonly property color tertiary_fg: "#0a372a"
|
|
readonly property color tertiaryContainer: "#254e40"
|
|
readonly property color tertiaryContainer_fg: "#bfecd9"
|
|
|
|
// ===== 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: "#e6e3d5"
|
|
|
|
readonly property color surface: "#14140c"
|
|
readonly property color surface_fg: "#e6e3d5"
|
|
|
|
readonly property color surfaceVariant: "#48473a"
|
|
readonly property color surfaceVariant_fg: "#c9c7b6"
|
|
|
|
// ===== SURFACE CONTAINERS =====
|
|
readonly property color surfaceContainerLowest: "#0f0f07"
|
|
readonly property color surfaceContainerLow: "#1c1c14"
|
|
readonly property color surfaceContainer: "#202018"
|
|
readonly property color surfaceContainerHigh: "#2b2a22"
|
|
readonly property color surfaceContainerHighest: "#36352c"
|
|
|
|
// ===== OUTLINE / UTILITY =====
|
|
readonly property color outline: "#939182"
|
|
readonly property color outlineVariant: "#48473a"
|
|
readonly property color shadowColor: "#000000"
|
|
readonly property color scrimColor: "#000000"
|
|
|
|
// ===== INVERSE =====
|
|
readonly property color inverseSurface: "#e6e3d5"
|
|
readonly property color inverseSurface_fg: "#313128"
|
|
readonly property color inversePrimary: "#616219"
|
|
}
|