From 1a22464721e175c6d2b763b593346ed3826a2fb4 Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Thu, 13 Mar 2025 12:23:07 +0800 Subject: [PATCH] css: Make the chunk addition/deletion/etc colors slightly saner --- static/style.css | 8 ++++---- diff --git a/static/style.css b/static/style.css index 1c948365f930ac48890dd9333bd566fdf391e7fe..e5398ceee48a76abc6c9c1e9996fe02fe1ff969f 100644 --- a/static/style.css +++ b/static/style.css @@ -209,18 +209,18 @@ .chunk-unchanged { 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; -- 2.48.1