quickshell/Colors.qml

108 lines
2.8 KiB
QML
Raw Normal View History

2026-03-11 14:14:04 +01:00
pragma Singleton
import QtQuick
import Quickshell
Singleton {
readonly property color background: "#12140e"
readonly property color error: "#ffb4ab"
readonly property color error_container: "#93000a"
readonly property color inverse_on_surface: "#2f312a"
readonly property color inverse_primary: "#4d662a"
readonly property color inverse_surface: "#e2e3d8"
readonly property color on_background: "#e2e3d8"
readonly property color on_error: "#690005"
readonly property color on_error_container: "#ffdad6"
readonly property color on_primary: "#203600"
readonly property color on_primary_container: "#ceeda2"
readonly property color on_primary_fixed: "#112000"
readonly property color on_primary_fixed_variant: "#364e15"
readonly property color on_secondary: "#2a331e"
readonly property color on_secondary_container: "#dce7c7"
readonly property color on_secondary_fixed: "#161e0b"
readonly property color on_secondary_fixed_variant: "#414a33"
readonly property color on_surface: "#e2e3d8"
readonly property color on_surface_variant: "#c5c8b9"
readonly property color on_tertiary: "#003734"
readonly property color on_tertiary_container: "#bcece7"
readonly property color on_tertiary_fixed: "#00201e"
readonly property color on_tertiary_fixed_variant: "#1f4e4b"
readonly property color outline: "#8f9285"
readonly property color outline_variant: "#44483d"
readonly property color primary: "#b3d089"
readonly property color primary_container: "#364e15"
readonly property color primary_fixed: "#ceeda2"
readonly property color primary_fixed_dim: "#b3d089"
readonly property color scrim: "#000000"
readonly property color secondary: "#c0cbac"
readonly property color secondary_container: "#414a33"
readonly property color secondary_fixed: "#dce7c7"
readonly property color secondary_fixed_dim: "#c0cbac"
readonly property color shadow: "#000000"
readonly property color source_color: "#88a95b"
readonly property color surface: "#12140e"
readonly property color surface_bright: "#383a32"
readonly property color surface_container: "#1e201a"
readonly property color surface_container_high: "#282b24"
readonly property color surface_container_highest: "#33362e"
readonly property color surface_container_low: "#1a1c16"
readonly property color surface_container_lowest: "#0d0f09"
readonly property color surface_dim: "#12140e"
readonly property color surface_tint: "#b3d089"
readonly property color surface_variant: "#44483d"
readonly property color tertiary: "#a0d0cb"
readonly property color tertiary_container: "#1f4e4b"
readonly property color tertiary_fixed: "#bcece7"
readonly property color tertiary_fixed_dim: "#a0d0cb"
2026-03-11 14:14:04 +01:00
}