2025-12-31 01:37:27 +01:00
|
|
|
pragma Singleton
|
|
|
|
|
import QtQuick
|
|
|
|
|
import Quickshell
|
|
|
|
|
|
|
|
|
|
Singleton {
|
|
|
|
|
id: customColors
|
|
|
|
|
// Core Backgrounds
|
2026-01-05 15:22:29 +01:00
|
|
|
readonly property color background: "#1A1B26"
|
|
|
|
|
readonly property color foreground: "#C0CAF5"
|
|
|
|
|
readonly property color cursor: "#C0CAF5"
|
2025-12-31 01:37:27 +01:00
|
|
|
|
|
|
|
|
// The 16 Colors of the Apocalypse
|
2026-01-05 15:22:29 +01:00
|
|
|
readonly property color color0: "#414868"
|
|
|
|
|
readonly property color color1: "#F7768E"
|
|
|
|
|
readonly property color color2: "#9ECE6A"
|
|
|
|
|
readonly property color color3: "#E0AF68"
|
|
|
|
|
readonly property color color4: "#7AA2F7"
|
|
|
|
|
readonly property color color5: "#BB9AF7"
|
|
|
|
|
readonly property color color6: "#7DCFFF"
|
|
|
|
|
readonly property color color7: "#A9B1D6"
|
|
|
|
|
readonly property color color8: "#414868"
|
|
|
|
|
readonly property color color9: "#F7768E"
|
|
|
|
|
readonly property color color10: "#9ECE6A"
|
|
|
|
|
readonly property color color11: "#E0AF68"
|
|
|
|
|
readonly property color color12: "#7AA2F7"
|
|
|
|
|
readonly property color color13: "#BB9AF7"
|
|
|
|
|
readonly property color color14: "#7DCFFF"
|
|
|
|
|
readonly property color color15: "#C0CAF5"
|
2025-12-31 01:37:27 +01:00
|
|
|
}
|