2025-12-31 01:37:27 +01:00
|
|
|
pragma Singleton
|
|
|
|
|
import QtQuick
|
|
|
|
|
import Quickshell
|
|
|
|
|
|
|
|
|
|
Singleton {
|
|
|
|
|
id: customColors
|
|
|
|
|
// Core Backgrounds
|
2026-01-13 12:12:16 +01:00
|
|
|
readonly property color background: "#24273A"
|
|
|
|
|
readonly property color foreground: "#CAD3F5"
|
|
|
|
|
readonly property color cursor: "#CAD3F5"
|
2025-12-31 01:37:27 +01:00
|
|
|
|
|
|
|
|
// The 16 Colors of the Apocalypse
|
2026-01-13 12:12:16 +01:00
|
|
|
readonly property color color0: "#494D64"
|
|
|
|
|
readonly property color color1: "#ED8796"
|
|
|
|
|
readonly property color color2: "#A6DA95"
|
|
|
|
|
readonly property color color3: "#EED49F"
|
|
|
|
|
readonly property color color4: "#8AADF4"
|
|
|
|
|
readonly property color color5: "#F5BDE6"
|
|
|
|
|
readonly property color color6: "#8BD5CA"
|
|
|
|
|
readonly property color color7: "#B8C0E0"
|
|
|
|
|
readonly property color color8: "#5B6078"
|
|
|
|
|
readonly property color color9: "#ED8796"
|
|
|
|
|
readonly property color color10: "#A6DA95"
|
|
|
|
|
readonly property color color11: "#EED49F"
|
|
|
|
|
readonly property color color12: "#8AADF4"
|
|
|
|
|
readonly property color color13: "#F5BDE6"
|
|
|
|
|
readonly property color color14: "#8BD5CA"
|
|
|
|
|
readonly property color color15: "#A5ADCB"
|
2025-12-31 01:37:27 +01:00
|
|
|
}
|