summaryrefslogtreecommitdiffstats
path: root/framework/qml/Colors.qml
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-07-22 00:02:38 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-07-22 00:02:38 +0200
commit29377be1a35180af41293acefae1f9fb49db9a65 (patch)
tree545d10d70f1d2dd1118ca6da3a78eef52c054ab3 /framework/qml/Colors.qml
parent9c54548b2bca96a2fda4da3d15429756774abb26 (diff)
downloadkube-29377be1a35180af41293acefae1f9fb49db9a65.tar.gz
kube-29377be1a35180af41293acefae1f9fb49db9a65.zip
Named all colors
Diffstat (limited to 'framework/qml/Colors.qml')
-rw-r--r--framework/qml/Colors.qml39
1 files changed, 28 insertions, 11 deletions
diff --git a/framework/qml/Colors.qml b/framework/qml/Colors.qml
index 523d5b23..b0be7569 100644
--- a/framework/qml/Colors.qml
+++ b/framework/qml/Colors.qml
@@ -21,16 +21,33 @@ pragma Singleton
21import QtQuick 2.7 21import QtQuick 2.7
22 22
23Item { 23Item {
24 property string textColor: "#31363b" 24 //Colorscheme:
25 property string disabledTextColor: "#7f8c8d" 25 //See https://community.kde.org/KDE_Visual_Design_Group/HIG/Color
26 property string backgroundColor: "#eff0f1" 26 property string paperWhite: "#fcfcfc"
27 property string viewBackgroundColor: "#fcfcfc" 27 property string abyssBlue: "#2980b9"
28 property string highlightColor: "#3daee9" 28 property string charcoalGrey: "#31363b"
29 property string highlightedTextColor: "#fcfcfc" 29 property string coastalFog: "#7f8c8d"
30 property string buttonColor: "#bdc3c7" 30 property string cardboardGrey: "#eff0f1"
31 property string positiveColor: "#27ae60" 31 property string plasmaBlue: "#3daee9"
32 property string warningColor: "#f67400" 32 property string alternateGrey: "#bdc3c7"
33 property string negativeColor: "#ed1515" 33 property string nobleFir: "#27ae60" //Green
34 property string statusbarColor: "#232629" 34 property string bewareOrange: "#f67400"
35 property string dangerRed: "#ed1515"
36 property string darkCharcoalGrey: "#232629"
37
38 //Colorusage:
39 property string textColor: charcoalGrey
40 property string disabledTextColor: coastalFog
41 property string backgroundColor: cardboardGrey
42 property string viewBackgroundColor: paperWhite
43 property string highlightColor: plasmaBlue
44 property string highlightedTextColor: paperWhite
45 property string buttonColor: alternateGrey
46 property string positiveColor: nobleFir
47 property string warningColor: bewareOrange
48 property string negativeColor: dangerRed
49 property string statusbarColor: darkCharcoalGrey
50 property string focusedButtonColor: abyssBlue
51
35} 52}
36 53