mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
55 lines
2.5 KiB
QML
55 lines
2.5 KiB
QML
// Colors.qml
|
|
pragma Singleton
|
|
import QtQuick
|
|
|
|
QtObject {
|
|
readonly property color text: "#9292B6"
|
|
readonly property color background: "#3B253F"
|
|
|
|
|
|
|
|
// dont know what they are
|
|
readonly property color playersLabel: "white"
|
|
readonly property color menuCheckBoxChecked1: "#C5E3EE"
|
|
readonly property color menuCheckBoxChecked2: "#90ACAD"
|
|
readonly property color menuCheckBoxShapePath: "transparent"
|
|
readonly property color menuChildrenRevealerShapePath: "transparent"
|
|
readonly property color menuItemColor1: "#824524"
|
|
readonly property color menuItemColor2: "white"
|
|
readonly property color menuItemColor3: "#bbbbbb"
|
|
readonly property color menuRadioButtonColor1: "#C5E3EE"
|
|
readonly property color menuRadioButtonColor2: "#90ACAD"
|
|
readonly property color menuViewColor: "#824524"
|
|
readonly property color sysTrayColor1: "transparent"
|
|
readonly property color sysTrayColor2: "#9B5B36"
|
|
readonly property color barColor1: "transparent"
|
|
readonly property color barColor2: "#3B253F"
|
|
readonly property color barColor3: "#BE850E"
|
|
readonly property color barColor4: "#3B253F"
|
|
readonly property color barColor5: "#BE850E"
|
|
readonly property color powerColor1: "black"
|
|
readonly property color powerColor2: "red"
|
|
readonly property color powerColor3: "#EEA939"
|
|
readonly property color powerColor4: "#EEA939"
|
|
readonly property color timeColor1: "white"
|
|
readonly property color tooltipColor1: "transparent"
|
|
readonly property color tooltipColor2: "#3B253F"
|
|
readonly property color tooltipBackupColor1: "transparent"
|
|
readonly property color tooltipBackupColor2: "#10ff0000"
|
|
readonly property color tooltipBackupColor3: "#10ff0000"
|
|
readonly property color tooltipBackupColor4: "red"
|
|
readonly property color volumeColor1: "#9B5B36"
|
|
readonly property color volumeColor2: "#824524"
|
|
readonly property color volumeColor3: "#8D804B"
|
|
readonly property color volumeColor4: "#8D804B"
|
|
readonly property color workspacesColor1: "#C0DB4C"
|
|
readonly property color workspacesColor2: "#59622D"
|
|
readonly property color ropeColor1: "#DAC99B"
|
|
readonly property color ropeColor2: "transparent"
|
|
readonly property color displayColor1: "#9292B6"
|
|
readonly property color displayColor2: "#9292B6"
|
|
readonly property color notifsOverlayColor1: "transparent"
|
|
readonly property color screenshotOverlayColor1: "#44000000"
|
|
readonly property color screenshotOverlayColor2: "#824524"
|
|
}
|