use gruvbox colors by default

This commit is contained in:
2022-04-13 02:39:09 +01:00
parent 5fb31f11e6
commit 980ffad386
3 changed files with 27 additions and 8 deletions

View File

@@ -1,8 +1,13 @@
@import url("https://styles.alv.cx/modules/colors/gruvbox.css");
:root {
--fg: #454545;
--bg: #fefefe;
--a: #07a;
--a-visited: #941352;
--light: var(--gruvbox-fg);
--dark: var(--gruvbox-bg);
--fg: var(--dark);
--bg: var(--light);
--a: var(--gruvbox-blue);
--a-visited: var(--gruvbox-purple);
}
body {