diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2015-10-11 13:04:15 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2015-10-11 13:04:15 +0200 |
commit | 543aa147fe44cd5329d2303f8632bda5990552a5 (patch) | |
tree | 1eb0d7fe4d9be67042270bc9f0ae80ed1de1f52d /applications/kmail-mobile/ColorPalette.qml | |
parent | 055ca386419b6f10bce60232c2a425c2931da6ed (diff) | |
download | kube-543aa147fe44cd5329d2303f8632bda5990552a5.tar.gz kube-543aa147fe44cd5329d2303f8632bda5990552a5.zip |
add kmail-mobile mockup
Diffstat (limited to 'applications/kmail-mobile/ColorPalette.qml')
-rw-r--r-- | applications/kmail-mobile/ColorPalette.qml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/applications/kmail-mobile/ColorPalette.qml b/applications/kmail-mobile/ColorPalette.qml new file mode 100644 index 00000000..c3993954 --- /dev/null +++ b/applications/kmail-mobile/ColorPalette.qml | |||
@@ -0,0 +1,27 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2015 Michael Bohlender <michael.bohlender@kdemail.net> | ||
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 3 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 | ||
15 | * along with this program; if not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | import QtQuick 2.4 | ||
19 | |||
20 | //TODO probably expose it from the Cpp side | ||
21 | Item { | ||
22 | property string background: "#fcfcfc" | ||
23 | property string selected: "#3daee9" | ||
24 | property string read: "#232629" | ||
25 | property string border: "#232629" | ||
26 | } | ||
27 | |||