diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-07-22 00:02:38 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-07-22 00:02:38 +0200 |
commit | 29377be1a35180af41293acefae1f9fb49db9a65 (patch) | |
tree | 545d10d70f1d2dd1118ca6da3a78eef52c054ab3 | |
parent | 9c54548b2bca96a2fda4da3d15429756774abb26 (diff) | |
download | kube-29377be1a35180af41293acefae1f9fb49db9a65.tar.gz kube-29377be1a35180af41293acefae1f9fb49db9a65.zip |
Named all colors
-rw-r--r-- | framework/qml/Colors.qml | 39 |
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 | |||
21 | import QtQuick 2.7 | 21 | import QtQuick 2.7 |
22 | 22 | ||
23 | Item { | 23 | Item { |
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 | ||