Skip to content

Commit

Permalink
fix: match new status colors (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
Silveere authored Dec 14, 2023
1 parent 99bf765 commit 3d22e54
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions src/components/_details.scss
Original file line number Diff line number Diff line change
@@ -1,35 +1,41 @@
// online
rect[fill="#23a55a"],
rect[fill="#299f5b"],
foreignObject[mask="url(#svg-mask-status-online)"] > div,
div[class^="dotOnline"],
i[class^="statusOnline"] {
fill: $green !important;
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;
}

Expand All @@ -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;
}

Expand Down

0 comments on commit 3d22e54

Please sign in to comment.