mirror of
https://github.com/pat-s/gitea-github-theme.git
synced 2024-11-23 22:01:01 +00:00
dark: fix coloring of links
This commit is contained in:
parent
18126ed790
commit
571e6dadd5
1 changed files with 41 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue