More actions
Futureself (talk | contribs) Created page with "body { background-color: #1a1a1a !important; →Dark background: color: #ffffff !important; →White text: }" |
Futureself (talk | contribs) No edit summary |
||
| Line 1: | Line 1: | ||
/* Force a dark background and white text */ | |||
:root { | |||
--background-color: #1a1a1a !important; | |||
--foreground-color: #ffffff !important; | |||
} | |||
/* Apply these colors to the body */ | |||
body { | body { | ||
background-color: | background-color: var(--background-color) !important; | ||
color: | color: var(--foreground-color) !important; | ||
} | } | ||
Revision as of 12:22, 28 February 2025
/* Force a dark background and white text */
:root {
--background-color: #1a1a1a !important;
--foreground-color: #ffffff !important;
}
/* Apply these colors to the body */
body {
background-color: var(--background-color) !important;
color: var(--foreground-color) !important;
}