From 2000c54f75242981721a890b649af87480837125 Mon Sep 17 00:00:00 2001 From: Adrian Kirk Date: Sat, 8 Oct 2022 01:45:14 +0100 Subject: [PATCH] Sliding Clock: changed hue of the purple face colouring --- apps/slidingtext/slidingtext.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/slidingtext/slidingtext.js b/apps/slidingtext/slidingtext.js index 309250351..c248d7058 100644 --- a/apps/slidingtext/slidingtext.js +++ b/apps/slidingtext/slidingtext.js @@ -31,7 +31,7 @@ const color_schemes = [ }, { name: "purple", - background : [1.0,0.0,1.0], + background : [0.3,0.0,0.6], main_bar: [1.0,1.0,0.0], other_bars: [0.85,0.85,0.85] }, @@ -677,7 +677,7 @@ var date_formatter; function setDateformat(shortname){ console.log("setting date format:" + shortname); try { - if (date_formatter == null || date_formatter.shortName() !== shortname) { + if (date_formatter == null) { if(shortname === "default"){ date_formatter = new DigitDateTimeFormatter(); } else {