From aa0823d0fc7ec589fc74ddd84ba49e65abb11967 Mon Sep 17 00:00:00 2001 From: David Hall Date: Tue, 26 Dec 2023 16:43:39 -0500 Subject: [PATCH] Fix default strut and panel colors to match actual vZome defaults --- style.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/style.css b/style.css index 66654fd..2d0fb07 100644 --- a/style.css +++ b/style.css @@ -8,14 +8,14 @@ --color-balls: rgb(255, 255, 255); --color-balls-selected: rgb(127, 127, 127); - --color-blu-strut: rgb(0, 118, 189); + --color-blu-strut: rgb(0, 118, 149); --color-yel-strut: rgb(240, 160, 0); --color-red-strut: rgb(175, 0, 0); --color-grn-strut: rgb(0, 141, 54); - --color-blu-panel: rgb(128, 186, 202); - --color-yel-panel: rgb(248, 208, 128); - --color-red-panel: rgb(215, 128, 128); + --color-blu-panel: rgb(127, 186, 202); + --color-yel-panel: rgb(247, 207, 127); + --color-red-panel: rgb(215, 127, 127); --color-grn-panel: rgb(127, 198, 154); }