Style.qml (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
pragma Singleton
import QtQuick
import Quickshell
Singleton {
readonly property color fg: "#afd2e9"
readonly property color bg: "#3b3228"
readonly property color bg95: "#43392d"
readonly property color bg75: "#4c4134"
readonly property color altbg: "#5d4f40"
readonly property color bg25: "#6b6055"
readonly property color sand: "#c1a387"
readonly property color scarlet: "#e86045"
readonly property color moss: "#92a650"
readonly property color celadon: "#ace1af"
readonly property color orange: "#e68d53"
readonly property color saffron: "#f8e2a0"
readonly property color cyan: "#3eccbe"
}
// accent : color (since 6.6)
// alternateBase : color
// base : color
// brightText : color
// button : color
// buttonText : color
// dark : color
// highlight : color
// highlightedText : color
// light : color
// link : color
// linkVisited : color
// mid : color
// midlight : color
// placeholderText : color (since 6.2)
// shadow : color
// text : "#afd2e9"
// toolTipBase : color
// toolTipText : color
// window : color
// windowText : color
|