quickshell/Colors.qml
2026-03-13 18:58:17 +01:00

108 lines
2.8 KiB
QML

pragma Singleton
import QtQuick
import Quickshell
Singleton {
readonly property color background: "#111318"
readonly property color error: "#ffb4ab"
readonly property color error_container: "#93000a"
readonly property color inverse_on_surface: "#2e3036"
readonly property color inverse_primary: "#425e91"
readonly property color inverse_surface: "#e2e2e9"
readonly property color on_background: "#e2e2e9"
readonly property color on_error: "#690005"
readonly property color on_error_container: "#ffdad6"
readonly property color on_primary: "#0c305f"
readonly property color on_primary_container: "#d7e2ff"
readonly property color on_primary_fixed: "#001b3f"
readonly property color on_primary_fixed_variant: "#284677"
readonly property color on_secondary: "#283041"
readonly property color on_secondary_container: "#dae2f9"
readonly property color on_secondary_fixed: "#131c2b"
readonly property color on_secondary_fixed_variant: "#3e4759"
readonly property color on_surface: "#e2e2e9"
readonly property color on_surface_variant: "#c4c6d0"
readonly property color on_tertiary: "#3f2844"
readonly property color on_tertiary_container: "#fad8fd"
readonly property color on_tertiary_fixed: "#29132e"
readonly property color on_tertiary_fixed_variant: "#573e5c"
readonly property color outline: "#8e9099"
readonly property color outline_variant: "#44474e"
readonly property color primary: "#abc7ff"
readonly property color primary_container: "#284677"
readonly property color primary_fixed: "#d7e2ff"
readonly property color primary_fixed_dim: "#abc7ff"
readonly property color scrim: "#000000"
readonly property color secondary: "#bec6dc"
readonly property color secondary_container: "#3e4759"
readonly property color secondary_fixed: "#dae2f9"
readonly property color secondary_fixed_dim: "#bec6dc"
readonly property color shadow: "#000000"
readonly property color source_color: "#01224c"
readonly property color surface: "#111318"
readonly property color surface_bright: "#37393e"
readonly property color surface_container: "#1e2025"
readonly property color surface_container_high: "#282a2f"
readonly property color surface_container_highest: "#33353a"
readonly property color surface_container_low: "#1a1c20"
readonly property color surface_container_lowest: "#0c0e13"
readonly property color surface_dim: "#111318"
readonly property color surface_tint: "#abc7ff"
readonly property color surface_variant: "#44474e"
readonly property color tertiary: "#ddbce0"
readonly property color tertiary_container: "#573e5c"
readonly property color tertiary_fixed: "#fad8fd"
readonly property color tertiary_fixed_dim: "#ddbce0"
}