From fd34ec38674e261d017af3190399b41575606604 Mon Sep 17 00:00:00 2001 From: pat-s Date: Wed, 3 Nov 2021 09:21:10 +0100 Subject: [PATCH] dark: adjust colors for added and removed code in diff view --- theme-github-dark.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/theme-github-dark.css b/theme-github-dark.css index 03aa99a..f9bd7bf 100644 --- a/theme-github-dark.css +++ b/theme-github-dark.css @@ -534,3 +534,12 @@ a.blob-excerpt { height: 17px; padding: 3px; } + +.removed-code { + background: #b70f22; + color: var(--color-text); +} +.added-code { + background: #0d8b2c; + color: var(--color-text); +}