From 991975edc1a25526f5745be7dfc0204d1c94c593 Mon Sep 17 00:00:00 2001 From: pat-s Date: Thu, 11 Nov 2021 11:59:00 +0100 Subject: [PATCH] dark: reverse timline icons and adjust green colors in PRs --- theme-github-dark.css | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/theme-github-dark.css b/theme-github-dark.css index e428785..74bd4ce 100755 --- a/theme-github-dark.css +++ b/theme-github-dark.css @@ -377,7 +377,7 @@ textarea, /* repo svg icons */ .repository.view.issue .comment-list .timeline-item .badge .svg { - fill: white; + fill: var(--color-text-light); } /* background emoji reactions */ @@ -523,15 +523,15 @@ a.blob-excerpt { margin-left: -31px; } .repository.view.issue .comment-list .timeline-item .badge.badge-commit { - border-color: var(--color-text-light); - background: var(--color-text); + border-color: var(--color-navbar); + background: var(--color-navbar); } .repository.view.issue .comment-list .timeline:before { background-color: var(--color-secondary); } .repository.view.issue .comment-list .timeline-item .badge .svg { - width: 17px; - height: 17px; + width: 20px; + height: 20px; padding: 3px; } @@ -553,3 +553,14 @@ input { background: var(--color-project-board-bg); color: #333 !important; } + +/* green checkmark background when approving PRs */ +.bg-green { + background: var(--color-primary)!important; +} +i.green.icon.icon.icon.icon { + color: var(--color-primary); +} +span.green .svg { + color: var(--color-primary); +}