-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathStyles.qml
37 lines (34 loc) · 1.57 KB
/
Styles.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import QtQuick 1.1
Item {
id: root
property color text_color_primary: "#eeeeee"
property color text_color_secondary: "#989898"
property color text_color_high: "#29C06E"
property color back_color_primary: "#4c4c4c"
property color toolbar_bottom_color: "#898989"
property color toolbar_bottom_button_active_color: "#eeeeee"
property color panel_back_color: "#222222"
property color info_text_color: "#3498db"
property color tooltip_back_color: "#eeeeee"
property color tooltip_text_color: "#222222"
property color dialog_back_color: "#333333"
property color text_entry_back_color: "#eeeeee"
property color text_entry_text_color: "#222222"
property color calendar_day_color: "#333333"
property color calendar_day_active_color: "#474747"
property color task_note_text_color: "#f1c40f"
property color small_menu_button_color: "#989898"
property color small_menu_button_active_color: "#eeeeee"
property color button_text_color: "#3c3c3c"
property color button_text_color_active: "#fff"
property color button_back_color: "#9a9a9a"
property color button_back_color_accent: "#fff"
property color button_back_color_ok: "#2ecc71"
property color button_back_color_notok: "#e74c3c"
property color close_button_color: "#222222"
property color close_button_active_color: "#eeeeee"
property string edit_icon: "images/edit_white.png"
property string eye_icon: "images/eye_eee.png"
property string list_icon: "images/list_eee.png"
property string arrow_right_icon: "images/arrow_right_eee.png"
}