use wave accent color for contextswitch pill (#1247)

This commit is contained in:
Mike Sawka 2024-11-08 12:19:53 -08:00 committed by GitHub
parent 61719344e8
commit 7718aebc17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,8 +21,9 @@
}
.pill-option.active {
background-color: #0073e6;
background-color: rgb(88, 193, 66);
color: #fff;
font-weight: bold;
}
.pill-option:not(.active):hover {
@ -40,7 +41,7 @@ html[data-theme="dark"] .pill-option {
}
html[data-theme="dark"] .pill-option.active {
background-color: #005bb5; /* Darker blue for active state */
background-color: rgb(88, 193, 66); /* Darker blue for active state */
color: #fff;
}