Use base16 framework for palettes

This commit is contained in:
Joe Roe 2022-09-30 12:54:31 +02:00
parent c94228ed2a
commit a181c69fd6
18 changed files with 158 additions and 106 deletions

17
static/css/colours.css Normal file
View file

@ -0,0 +1,17 @@
:root {
/* Background */
--bg: var(--base00);
--off-bg: var(--base01);
--inner-bg: var(--base02);
/* Text */
--fg: var(--base05);
--off-fg: var(--base04);
--muted: var(--base03);
--link: var(--base0D);
--hover: var(--base0C);
--highlight: var(--base0A);
/* Logo */
--logo: var(--base0B);
}