diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-11 11:10:59 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-11 11:10:59 +0800 |
commit | 35b1a2762bbe13c0e027d5d54079746e7b06b59a (patch) | |
tree | 10b61a336f5a4948f49043b02c58e16903e05918 | |
parent | chroma.css: Add dark theme (diff) | |
download | forge-35b1a2762bbe13c0e027d5d54079746e7b06b59a.tar.gz forge-35b1a2762bbe13c0e027d5d54079746e7b06b59a.tar.zst forge-35b1a2762bbe13c0e027d5d54079746e7b06b59a.zip |
style.css: Make links brighter in dark mode
-rw-r--r-- | static/style.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/style.css b/static/style.css index 04b2612..94084dc 100644 --- a/static/style.css +++ b/static/style.css @@ -16,7 +16,7 @@ html { html { --background-color: hsl(0, 0%, 0%); --text-color: hsl(0, 0%, 100%); - --link-color: hsl(320, 50%, 64%); + --link-color: hsl(320, 50%, 76%); --light-text-color: hsl(0, 0%, 78%); --darker-border-color: hsl(0, 0%, 35%); --lighter-border-color: hsl(0, 0%, 25%); |