css: Fix the color of alert word in dark theme.

This was incorrectly not declared as a theme-dependant color.

Fixes #28407.
This commit is contained in:
Joydeep Bhattacharjee 2024-01-05 00:23:14 +05:30 committed by GitHub
parent bd38e6cb69
commit e3744627ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -211,7 +211,7 @@
}
.alert-word {
background-color: hsl(18deg 100% 84%);
background-color: var(--color-background-alert-word);
}
/* Timestamps */

View File

@ -235,6 +235,7 @@ body {
--color-outline-tab-picker-tab-option: hsl(0deg 0% 0% / 30%);
--color-background-tab-picker-tab-option-hover: hsl(0deg 0% 100% / 60%);
--color-background-popover: hsl(0deg 0% 100%);
--color-background-alert-word: hsl(18deg 100% 84%);
/* Compose box colors */
--color-compose-send-button-icon-color: hsl(0deg 0% 100%);
@ -521,6 +522,7 @@ body {
--color-background-tab-picker-selected-tab: hsl(0deg 0% 100% / 7%);
--color-outline-tab-picker-tab-option: hsl(0deg 0% 100% / 12%);
--color-background-tab-picker-tab-option-hover: hsl(0deg 0% 100% / 5%);
--color-background-alert-word: hsl(22deg 70% 35%);
/* Compose box colors */
--color-compose-send-button-focus-shadow: hsl(0deg 0% 100% / 80%);