summaryrefslogtreecommitdiffstats
path: root/framework/qml/Colors.qml
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-04-05 10:07:13 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-04-05 10:07:13 +0200
commite78224a7d9ccf70aadde8c0bff1cab72e8cb7438 (patch)
tree57afeef37640051a8d28d614c33345e509ce387b /framework/qml/Colors.qml
parentbfba957a7ebc64925bc553200616724cba9b1e37 (diff)
downloadkube-e78224a7d9ccf70aadde8c0bff1cab72e8cb7438.tar.gz
kube-e78224a7d9ccf70aadde8c0bff1cab72e8cb7438.zip
Moved theme to framework
Diffstat (limited to 'framework/qml/Colors.qml')
-rw-r--r--framework/qml/Colors.qml36
1 files changed, 36 insertions, 0 deletions
diff --git a/framework/qml/Colors.qml b/framework/qml/Colors.qml
new file mode 100644
index 00000000..9d1737d1
--- /dev/null
+++ b/framework/qml/Colors.qml
@@ -0,0 +1,36 @@
1/*
2 Copyright (C) 2017 Michael Bohlender, <bohlender@kolabsys.com>
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License along
15 with this program; if not, write to the Free Software Foundation, Inc.,
16 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17*/
18
19pragma Singleton
20
21import QtQuick 2.7
22
23Item {
24 property string textColor: "#31363b"
25 property string disabledTextColor: "#7f8c8d"
26 property string backgroundColor: "#eff0f1"
27 property string viewBackgroundColor: "#fcfcfc"
28 property string highlightColor: "#3daee9"
29 property string highlightedTextColor: "#fcfcfc"
30
31
32 property string positveColor: "#27ae60"
33 property string warningColor: "#f67400"
34 property string negativeColor: "#ed1515"
35}
36