Compare commits

...

2 Commits

Author SHA1 Message Date
980ffad386
use gruvbox colors by default 2022-04-13 02:39:09 +01:00
5fb31f11e6
link to repos for colors 2022-04-13 02:30:01 +01:00
4 changed files with 31 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 {

View File

@ -1,3 +1,5 @@
/* colors from https://github.com/chriskempson/base16 */
:root {
--base16-base00: #181818; /* default background */
--base16-base01: #282828; /* lighter background */

View File

@ -1,3 +1,5 @@
/* colors from https://github.com/morhetz/gruvbox */
:root {
--gruvbox-orange: #d65d0e;
--gruvbox-red: #cc242d;
@ -14,4 +16,20 @@
--gruvbox-blue-light: #83a598;
--gruvbox-purple-light: #d3869b;
--gruvbox-aqua-light: #8ec07c;
--gruvbox-bg: #282828; /* default background */
--gruvbox-bg0_h: #1d2021; /* hard background */
--gruvbox-bg0_s: #32302f; /* soft background */
--gruvbox-bg0: #282828; /* same as bg */
--gruvbox-bg1: #3c3836;
--gruvbox-bg2: #504945;
--gruvbox-bg3: #665c54;
--gruvbox-bg4: #7c6f64;
--gruvbox-fg: #ebdbb2;
--gruvbox-fg0: #fbf1c7;
--gruvbox-fg1: #ebdbb2;
--gruvbox-fg2: #d5c4a1;
--gruvbox-fg3: #bdae93;
--gruvbox-fg4: #a89984;
--gruvbox-gray: #928374;
}

View File

@ -1,9 +1,7 @@
@media (prefers-color-scheme: dark) {
:root {
--fg: #ccc;
--bg: #111;
--a: #07a;
--a-visited: #aa346d;
--fg: var(--light);
--bg: var(--dark);
}
img, video {
opacity: .75;