summaryrefslogtreecommitdiff
path: root/src/main.qml
diff options
context:
space:
mode:
authorArseniy Movshev <dodoradio@outlook.com>2023-01-18 19:01:10 +0000
committerArseniy Movshev <dodoradio@outlook.com>2023-01-18 20:29:48 +0000
commitd78ce0b466b212bff3bfd256ebf1c0c70d5c4b55 (patch)
tree53ef3608dfe89ecaff3093e041be5fa56d2c0635 /src/main.qml
parent38d6e68a153061917672af697d1d12f4755387ee (diff)
Tweak the UI colours for aesthetics and readability
consolidate most of the colours into `colors` - also rename this to US 'colors' for consistency make all icons in setpointpage white for readability
Diffstat (limited to '')
-rw-r--r--src/main.qml12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/main.qml b/src/main.qml
index 22a7597..2852fe8 100644
--- a/src/main.qml
+++ b/src/main.qml
@@ -6,14 +6,16 @@ import Nemo.Configuration 1.0
import QtSensors 5.3
Application {
- centerColor: "#6e90e9"
- outerColor: "#00bc1b"
+ centerColor: colors.primary
+ outerColor: colors.secondary
id: app
Item {
- id: colours
- property string primary: "#0056d7"
- property string primaryUnselected: "#3274d7"
+ id: colors
+ property string primary: "#003F1A"
+ property string secondary: "#00FCC9"
+ property string textDefault: "#FFFFFF"
+ property string textUnselected: "#999999"
}
Plugin {
id: mapProvider