From 3d22e54382d0a0eb09aaa242095d46bad7848aa1 Mon Sep 17 00:00:00 2001 From: Silveere Date: Thu, 14 Dec 2023 13:00:39 -0500 Subject: [PATCH] fix: match new status colors (#273) --- src/components/_details.scss | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/src/components/_details.scss b/src/components/_details.scss index b79b073bb..4a528b0c0 100644 --- a/src/components/_details.scss +++ b/src/components/_details.scss @@ -1,5 +1,6 @@ // online rect[fill="#23a55a"], +rect[fill="#299f5b"], foreignObject[mask="url(#svg-mask-status-online)"] > div, div[class^="dotOnline"], i[class^="statusOnline"] { @@ -7,29 +8,34 @@ i[class^="statusOnline"] { background-color: $green !important; } -rect[fill="rgba(35, 165, 90, 1)"] { +rect[fill="rgba(35, 165, 90, 1)"], +rect[fill="rgba(41, 159, 91, 1)"] { fill: $green !important; } // idle rect[fill="#f0b232"], +rect[fill="#e6ae3c"], foreignObject[mask="url(#svg-mask-status-idle)"] > div { fill: $yellow !important; background-color: $yellow !important; } -rect[fill="rgba(240, 178, 50, 1)"] { +rect[fill="rgba(240, 178, 50, 1)"], +rect[fill="rgba(230, 174, 60, 1)"] { fill: $yellow !important; } // dnd rect[fill="#f23f43"], +rect[fill="#ea474b"], foreignObject[mask="url(#svg-mask-status-dnd)"] > div { fill: $red !important; background-color: $red !important; } -rect[fill="rgba(242, 63, 67, 1)"] { +rect[fill="rgba(242, 63, 67, 1)"], +rect[fill="rgba(230, 174, 60, 1)"] { fill: $red !important; } @@ -44,12 +50,14 @@ i[class^="statusOffline"] { background-color: $subtext0 !important; } -rect[fill="rgba(130, 133, 143, 1)"] { +rect[fill="rgba(130, 133, 143, 1)"], +rect[fill="rgba(128, 132, 142, 1)"] { fill: $subtext0 !important; } // streaming -rect[fill="#593695"] { +rect[fill="#593695"], +rect[fill="#5b3a91"] { fill: $mauve !important; }