Compare commits

..
2 Commits
Author SHA1 Message Date
alvierahman90 0a3b787cb6 make light mode styling not yellow 2022-04-13 03:05:45 +01:00
alvierahman90 bb6d68a997 update readme 2022-04-13 02:45:08 +01:00
3 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
@import url("https://styles.alv.cx/modules/colors/gruvbox.css");
:root {
--light: var(--gruvbox-fg);
--light: #fefefe;
--dark: var(--gruvbox-bg);
--fg: var(--dark);
+1
View File
@@ -1,5 +1,6 @@
@media (prefers-color-scheme: dark) {
:root {
--light: var(--gruvbox-fg);
--fg: var(--light);
--bg: var(--dark);
}
+4
View File
@@ -10,3 +10,7 @@ to style a site, put this in a css file somewhere:
and any of the optional modules you want.
a list of actively hosted modules can be seen in this repo in the modules folder and at
https://styles.alv.cx/modules/
there are some variables you may want to use to keep your site's styling consistent and you can
view them in the `:root` section of `base.css` and any module you use.