16 lines
761 B
QML
16 lines
761 B
QML
pragma Singleton
|
|
|
|
import QtQuick
|
|
|
|
// Everforest Dark Hard — edit here to retheme the whole bar.
|
|
QtObject {
|
|
readonly property color bg: "#2d353b" // bar background, text on highlights
|
|
readonly property color bgDark: "#272e33" // popup background
|
|
readonly property color surface: "#343f44" // inactive workspace pill, hover bg
|
|
readonly property color fg: "#d3c6aa" // primary text and icons
|
|
readonly property color fgDim: "#7a8478" // separators, weekday labels, muted/offline
|
|
readonly property color accent: "#a7c080" // active workspace, today, nav arrows
|
|
readonly property color warning: "#e69875" // moderate load
|
|
readonly property color critical: "#e67e80" // high load, low battery, weekends
|
|
}
|