From 6a5e1ed1ae39ecc1e1679bb4476b49ddc5bf26e6 Mon Sep 17 00:00:00 2001 From: Izzy Date: Fri, 1 Oct 2021 23:04:03 +0200 Subject: [PATCH 1/2] dark theme: add some missing color definitions --- theme-github-dark.css | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/theme-github-dark.css b/theme-github-dark.css index 3fdd3c2..17da6dd 100644 --- a/theme-github-dark.css +++ b/theme-github-dark.css @@ -4,6 +4,7 @@ --color-body: #373e47; --color-navbar: #22272e; --color-footer: #22272e; + --color-text-light: #a6aab5; --color-text-light-2: #adbac7; --color-text: #768390; --color-box-body: #22272e; @@ -11,9 +12,47 @@ --color-light: #22272e; --color-button: #22272e; --color-input-background: #22272e; + --color-input-text: #adbac7; --color-box-header: #22272e; --color-active: #22272e; + --color-menu: #22272e; + --color-secondary: #454a57; } + +.ui.list .list > .item > .content, .ui.list > .item > .content { + color: unset; +} + +.ui.list .list > .item .description, .ui.list > .item .description { + color: var(--color-text); +} + +.ui.repository.list, .ui.user.list { + background: var(--color-box-body); + padding: 1em; + border-radius: .75em; +} + +.ui .error.header { + border-color: var(--color-red) !important; + background-color: var(--color-red) !important; + color: #ffffff !important; +} + +.ui.modal > .header { + background: var(--color-secondary); + color: #dbdbdb; +} + +.ui.modal > .actions { + background: var(--color-secondary); + border-color: var(--color-secondary); +} + +.ui.modal > .content { + background: #383c4a; +} + .ui.green.buttons .button, .ui.green.button { background-color: #347d39; From 0694291f9c875552dc7cc53ee00cb33ae7462cff Mon Sep 17 00:00:00 2001 From: Izzy Date: Fri, 1 Oct 2021 23:19:38 +0200 Subject: [PATCH 2/2] dark theme: some more missing definitions --- theme-github-dark.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/theme-github-dark.css b/theme-github-dark.css index 17da6dd..cf10516 100644 --- a/theme-github-dark.css +++ b/theme-github-dark.css @@ -6,7 +6,7 @@ --color-footer: #22272e; --color-text-light: #a6aab5; --color-text-light-2: #adbac7; - --color-text: #768390; + --color-text: #bbc0ca; --color-box-body: #22272e; --color-markup-code-block: #636e7b66; --color-light: #22272e; @@ -33,6 +33,10 @@ border-radius: .75em; } +.ui.header .sub.header { + color: #636e7b; +} + .ui .error.header { border-color: var(--color-red) !important; background-color: var(--color-red) !important;