diff options
| author | Fuwn <[email protected]> | 2024-06-13 14:30:22 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-13 14:30:22 +0000 |
| commit | e02923bfe473b474a0b8ea96509a0cbda501e0dc (patch) | |
| tree | 07a4e167aa3b51fd7d0b1020e9d3cdd54b13a799 /default.css | |
| parent | refactor(url): use unwrap instead of map (diff) | |
| download | september-e02923bfe473b474a0b8ea96509a0cbda501e0dc.tar.xz september-e02923bfe473b474a0b8ea96509a0cbda501e0dc.zip | |
feat: custom primary colour variable
Diffstat (limited to 'default.css')
| -rw-r--r-- | default.css | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/default.css b/default.css index 65a1ea4..625d0d7 100644 --- a/default.css +++ b/default.css @@ -5,10 +5,10 @@ --fg: var(--base04); --off-fg: var(--base04); --muted: var(--base03); - --link: var(--base0D); + --link: var(--primary); --hover: var(--base0E); - --highlight: var(--base0D); - --logo: var(--base0D); + --highlight: var(--primary); + --logo: var(--primary); --font-monospace: "Fira Mono", monospace; --font-size: 13.5px; } @@ -89,12 +89,14 @@ p { a:link, a:visited { color: var(--link); + text-decoration: none; } a:hover, a:active, a.active { - color: var(--hover); + background-color: var(--link); + color: var(--bg); } ul { @@ -267,7 +269,7 @@ img { } } -* { +/* * { transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} +} */ |