bot_icon: Adjust bot-icon color for light and dark modes.

(cherry picked from commit a9bc5e94e7)
This commit is contained in:
Karl Stolley
2023-06-16 12:31:01 -05:00
committed by Alex Vandiver
parent da4c4f74f2
commit ca0fd7f797
2 changed files with 7 additions and 1 deletions

View File

@@ -94,7 +94,7 @@ a.no-underline:hover {
}
i.zulip-icon.zulip-icon-bot {
color: hsl(180deg 5% 74%);
color: var(--color-icon-bot);
vertical-align: top;
padding: 0 2px;
}

View File

@@ -155,6 +155,9 @@ body {
--color-text-self-direct-mention: hsl(240deg 52% 45% / 100%);
--color-text-self-group-mention: hsl(183deg 52% 26% / 100%);
/* Icon colors */
--color-icon-bot: hsl(180deg 8% 65% / 100%);
/* Mention pill colors */
--color-background-direct-mention: hsl(240deg 52% 95%);
--color-background-group-mention: hsl(180deg 40% 94%);
@@ -195,6 +198,9 @@ body {
--color-text-self-direct-mention: hsl(240deg 100% 88% / 100%);
--color-text-self-group-mention: hsl(184deg 52% 63% / 100%);
/* Icon colors */
--color-icon-bot: hsl(180deg 5% 50% / 100%);
/* Mention pill colors */
--color-background-direct-mention: hsl(240deg 13% 20%);
--color-background-group-mention: hsl(180deg 13% 15%);