From 01db62083d89053321f568de4dbbded67c714b77 Mon Sep 17 00:00:00 2001 From: ohmytime Date: Thu, 23 Nov 2023 17:22:32 +0800 Subject: [PATCH] Optimization for better view on MEM mode --- src/gui.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui.cpp b/src/gui.cpp index 232b0fa..a3a5353 100644 --- a/src/gui.cpp +++ b/src/gui.cpp @@ -73,7 +73,7 @@ void doTheme() { // Use this to put your own colors in: http://www.barth-dev.de BackgroundColor = TFT_BLACK; ActiveColor = TFT_WHITE; ActiveColorSmooth = 0x18E3; - SignificantColor = TFT_RED; + SignificantColor = TFT_GREEN; SignificantColorSmooth = 0x2000; InsignificantColor = TFT_GREEN; InsignificantColorSmooth = 0x00C0; @@ -153,7 +153,7 @@ void doTheme() { // Use this to put your own colors in: http://www.barth-dev.de ActiveColorSmooth = 0x18E3; SignificantColor = TFT_RED; SignificantColorSmooth = 0x2000; - InsignificantColor = TFT_GREEN; + InsignificantColor = 0xAA1C; InsignificantColorSmooth = 0x00C0; StereoColor = TFT_GREEN; StereoColorSmooth = 0x0200; @@ -203,7 +203,7 @@ void doTheme() { // Use this to put your own colors in: http://www.barth-dev.de BackgroundColor = 0xDFFC; ActiveColor = TFT_BLACK; ActiveColorSmooth = 0xDFFC; - SignificantColor = TFT_BLACK; + SignificantColor = TFT_RED; SignificantColorSmooth = 0xDFFC; InsignificantColor = TFT_GREEN; InsignificantColorSmooth = 0x0140;