make light mode styling not yellow

This commit is contained in:
Akbar Rahman 2022-04-13 03:05:45 +01:00
parent bb6d68a997
commit 0a3b787cb6
Signed by: alvierahman90
GPG Key ID: 20609519444A1269
2 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,7 @@
@import url("https://styles.alv.cx/modules/colors/gruvbox.css"); @import url("https://styles.alv.cx/modules/colors/gruvbox.css");
:root { :root {
--light: var(--gruvbox-fg); --light: #fefefe;
--dark: var(--gruvbox-bg); --dark: var(--gruvbox-bg);
--fg: var(--dark); --fg: var(--dark);

View File

@ -1,5 +1,6 @@
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
:root { :root {
--light: var(--gruvbox-fg);
--fg: var(--light); --fg: var(--light);
--bg: var(--dark); --bg: var(--dark);
} }