From cb61105a2f0ed79eb816ec75b72acd35436d4daa Mon Sep 17 00:00:00 2001 From: Arseniy Movshev Date: Fri, 7 Jul 2023 12:06:08 +0100 Subject: 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. --- src/main.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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 { -- cgit v1.2.3-54-g00ecf