From 571e6dadd55df2d34861ea94f1e509c2040b80fa Mon Sep 17 00:00:00 2001 From: pat-s Date: Tue, 5 Oct 2021 09:37:15 +0300 Subject: [PATCH] dark: fix coloring of links --- theme-github-dark.css | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/theme-github-dark.css b/theme-github-dark.css index 0769aba..3ab084f 100644 --- a/theme-github-dark.css +++ b/theme-github-dark.css @@ -268,3 +268,44 @@ textarea, .ui.checkbox input:not([type="radio"]):indeterminate ~ label:before { border-color: var(--color-secondary); } + +/* right border of "find repository" field */ +.ui.action.input:not([class*="left action"])>input { + border-right-color: var(--color-input-border-hover); +} + +/* background color of code display */ +.lines-code { + background-color: #22272e; +} + +/* green code color dark theme */ +.chroma .s2 { + color: #8ddb8c; +} + +.chroma .k { + color: #f47067; +} + +.chroma .m { + color: #6cb6ff; +} + +.chroma .nf { + color: #96d0ff; +} + +/* border color repo files */ +.repository.file.list #repo-files-table td { + border-bottom: 1px solid #373e47; +} + +/* text color repo files */ +.repository.file.list #repo-files-table td { + color: #7f8699; +} + +.repository.file.list #repo-files-table td a { + color: #7f8699!important; +}