diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-13 12:23:07 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-13 12:23:07 +0800 |
commit | 1a22464721e175c6d2b763b593346ed3826a2fb4 (patch) | |
tree | 1a2d29320a1b24026d4b026dc7b526149e71e71e /static | |
parent | readme: We're switching to Hare (diff) | |
download | forge-1a22464721e175c6d2b763b593346ed3826a2fb4.tar.gz forge-1a22464721e175c6d2b763b593346ed3826a2fb4.tar.zst forge-1a22464721e175c6d2b763b593346ed3826a2fb4.zip |
css: Make the chunk addition/deletion/etc colors slightly saner
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/static/style.css b/static/style.css index 1c94836..e5398ce 100644 --- a/static/style.css +++ b/static/style.css @@ -209,18 +209,18 @@ td > pre { color: grey; } .chunk-addition { - background-color: green; + color: green; } @media (prefers-color-scheme: dark) { .chunk-addition { - background-color: lime; + color: lime; } } .chunk-deletion { - background-color: red; + color: red; } .chunk-unknown { - background-color: yellow; + color: yellow; } pre.chunk { margin-top: 0; |