Change accent color from base0C to base09

This is closer to the Base16 standard style guide. Also, it just happen
to look nicer anyways. :)

Related with the change also comes with a new color when hovered.
This commit is contained in:
Gabriel Arazas 2023-02-27 16:53:18 +08:00
parent 37b96902e8
commit 06aa16bc3e
3 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ a {
text-decoration: none;
&:hover {
color: var(--base0B);
color: var(--base0C);
text-decoration: underline;
}
}

View File

@ -5,7 +5,7 @@ header[aria-label="Site header"] {
color: var(--base06);
&:hover {
color: var(--base0C);
color: var(--accent-color);
text-decoration: unset;
}
}

View File

@ -14,7 +14,7 @@
--border-style: var(--base05) solid 1px;
--background: var(--base00);
--foreground: var(--base05);
--accent-color: var(--base0C);
--accent-color: var(--base09);
--selection-color: var(--base02);
}