quickshell/Colors.qml

108 lines
2.8 KiB
QML

pragma Singleton
import QtQuick
import Quickshell
Singleton {
readonly property color background: "#131318"
readonly property color error: "#ffb4ab"
readonly property color error_container: "#93000a"
readonly property color inverse_on_surface: "#313036"
readonly property color inverse_primary: "#5a5891"
readonly property color inverse_surface: "#e5e1e9"
readonly property color on_background: "#e5e1e9"
readonly property color on_error: "#690005"
readonly property color on_error_container: "#ffdad6"
readonly property color on_primary: "#2c2960"
readonly property color on_primary_container: "#e3dfff"
readonly property color on_primary_fixed: "#16134a"
readonly property color on_primary_fixed_variant: "#424078"
readonly property color on_secondary: "#2f2e42"
readonly property color on_secondary_container: "#e3e0f9"
readonly property color on_secondary_fixed: "#1a1a2c"
readonly property color on_secondary_fixed_variant: "#464559"
readonly property color on_surface: "#e5e1e9"
readonly property color on_surface_variant: "#c8c5d0"
readonly property color on_tertiary: "#472639"
readonly property color on_tertiary_container: "#ffd8ea"
readonly property color on_tertiary_fixed: "#2f1123"
readonly property color on_tertiary_fixed_variant: "#603b50"
readonly property color outline: "#928f9a"
readonly property color outline_variant: "#47464f"
readonly property color primary: "#c3c0ff"
readonly property color primary_container: "#424078"
readonly property color primary_fixed: "#e3dfff"
readonly property color primary_fixed_dim: "#c3c0ff"
readonly property color scrim: "#000000"
readonly property color secondary: "#c7c4dd"
readonly property color secondary_container: "#464559"
readonly property color secondary_fixed: "#e3e0f9"
readonly property color secondary_fixed_dim: "#c7c4dd"
readonly property color shadow: "#000000"
readonly property color source_color: "#6e6ca2"
readonly property color surface: "#131318"
readonly property color surface_bright: "#39383f"
readonly property color surface_container: "#201f25"
readonly property color surface_container_high: "#2a292f"
readonly property color surface_container_highest: "#35343a"
readonly property color surface_container_low: "#1c1b21"
readonly property color surface_container_lowest: "#0e0e13"
readonly property color surface_dim: "#131318"
readonly property color surface_tint: "#c3c0ff"
readonly property color surface_variant: "#47464f"
readonly property color tertiary: "#eab9d1"
readonly property color tertiary_container: "#603b50"
readonly property color tertiary_fixed: "#ffd8ea"
readonly property color tertiary_fixed_dim: "#eab9d1"
}