diff options
author | Arseniy Movshev <dodoradio@outlook.com> | 2023-07-07 12:06:08 +0100 |
---|---|---|
committer | Arseniy Movshev <dodoradio@outlook.com> | 2023-07-07 12:31:14 +0100 |
commit | cb61105a2f0ed79eb816ec75b72acd35436d4daa (patch) | |
tree | 8ad680df67edb23c0bb5d5f20b0ec8646ffb2cd1 | |
parent | ff38b7875f918baaf8ece599c42e0874efc3fbc6 (diff) |
Invert colours to comply with asteroid conventions
asteroid generally has dark on outside and light on inside.
not sure why this was the other way round, anyway this fixes it.
Diffstat (limited to '')
-rw-r--r-- | asteroid-map.desktop.template | 4 | ||||
-rw-r--r-- | src/main.qml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/asteroid-map.desktop.template b/asteroid-map.desktop.template index 0527294..5bddf68 100644 --- a/asteroid-map.desktop.template +++ b/asteroid-map.desktop.template @@ -3,5 +3,5 @@ Type=Application Categories=Applications; Exec=invoker --single-instance --type=qtcomponents-qt5 /usr/bin/asteroid-map Icon=ios-topographic-outline -X-Asteroid-Center-Color=#003F1A -X-Asteroid-Outer-Color=#00FCC9 +X-Asteroid-Center-Color=#00FCC9 +X-Asteroid-Outer-Color=#003F1A diff --git a/src/main.qml b/src/main.qml index 5980264..b5f0ac5 100644 --- a/src/main.qml +++ b/src/main.qml @@ -22,8 +22,8 @@ import Nemo.Configuration 1.0 import QtSensors 5.3 Application { - centerColor: colors.primary - outerColor: colors.secondary + centerColor: colors.secondary + outerColor: colors.primary id: app Item { |