From 606578e9f7036dd7774b7565beaa9cf1661275ec Mon Sep 17 00:00:00 2001 From: Isabell Pflug Date: Thu, 25 May 2023 14:49:35 +0200 Subject: [PATCH] :lipstick: Changed default colours --- ThinkPink/ThinkPink.ini | 2 +- ThinkPink/samegame.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ThinkPink/ThinkPink.ini b/ThinkPink/ThinkPink.ini index 32f689a..d42be85 100644 --- a/ThinkPink/ThinkPink.ini +++ b/ThinkPink/ThinkPink.ini @@ -3,4 +3,4 @@ columns = 9 rows = 9 [colors] -colors = 0xBD005E, 0xFFC0CB, 0xDB7093, 0xF7A8B8, 0x660033 +colors = #A90A5A, #FFD1D9, #DB7093, #F7A8B8, #660033 diff --git a/ThinkPink/samegame.cpp b/ThinkPink/samegame.cpp index bec2788..7c323a5 100644 --- a/ThinkPink/samegame.cpp +++ b/ThinkPink/samegame.cpp @@ -19,7 +19,7 @@ void SameGame::initialiseGameMatrix(int rows, int columns) { } SameGame::SameGame(int rows, int columns) - : colors(settings->value("colors/colors", QStringList() << "#BD005E" << "#FFC0CB" << "#DB7093" << "#F7A8B8" << "#660033").toStringList()) + : colors(settings->value("colors/colors", QStringList() << "#A90A5A" << "#FFD1D9" << "#DB7093" << "#F7A8B8" << "#660033").toStringList()) // also ich finds echt cool! { initialiseGameMatrix(rows, columns);