From 5c8e604e08cb83402de3d431b39b05f518974265 Mon Sep 17 00:00:00 2001 From: pat-s Date: Tue, 23 Nov 2021 22:12:07 +0100 Subject: [PATCH] dark: optimize colors for highlighted code --- theme-github-dark.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/theme-github-dark.css b/theme-github-dark.css index 9214121..7e66a72 100755 --- a/theme-github-dark.css +++ b/theme-github-dark.css @@ -571,3 +571,14 @@ i.green.icon.icon.icon.icon { span.green .svg { color: var(--color-primary); } + +/* highlight color bg for highlighted lines */ +.lines-code.active, .lines-code .active { + border-radius: 6px; + background: #000000!important; +} +.ui.ui.ui.ui.table tr.active, .ui.ui.table td.active { + box-shadow: 0 0 #000000de inset; + background: #E0E0E0; + color: --var(--color-text); +}