6 Commits

Author SHA1 Message Date
pat-s
89228c7390 format readme table 2021-10-05 09:44:49 +03:00
pat-s
831a99fbfd update dark screenshots 2021-10-05 09:43:07 +03:00
pat-s
571e6dadd5 dark: fix coloring of links 2021-10-05 09:37:15 +03:00
pat-s
18126ed790 dark: update border color of .ui.label 2021-10-02 09:57:11 +03:00
pat-s
ef197cf7f0 dark: update border color of a.ui.label 2021-10-02 09:55:33 +03:00
pat-s
f491463acb update border color of form fields in settings page 2021-10-02 09:41:18 +03:00
4 changed files with 74 additions and 4 deletions

View File

@@ -23,7 +23,7 @@ I might update the theme over time to fix oversights and other issues - no guara
## Screenshots
| | |
| :-----------------------: | :-----------------------: |
| ![](figs/screenshot1.png) | ![](figs/screenshot2.png) |
| ![](figs/screenshot-dark1.png) | ![](figs/screenshot-dark2.png) ||
| | |
| :----------------------------: | :----------------------------: |
| ![](figs/screenshot1.png) | ![](figs/screenshot2.png) |
| ![](figs/screenshot-dark1.png) | ![](figs/screenshot-dark2.png) |

Binary file not shown.

Before

Width:  |  Height:  |  Size: 111 KiB

After

Width:  |  Height:  |  Size: 230 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 98 KiB

After

Width:  |  Height:  |  Size: 116 KiB

View File

@@ -183,6 +183,10 @@ a,
}
a.ui.label {
color: #adbac7 !important;
border-color: var(--color-secondary) !important;
}
.ui.label {
border-color: var(--color-secondary) !important;
}
.ui.menu .item {
color: #adbac7;
@@ -239,3 +243,69 @@ textarea,
.page-content .ui.button {
border-color: var(--color-secondary);
}
/* border color form fields settings page */
input,
textarea,
.ui.input > input,
.ui.form input:not([type]),
.ui.form select,
.ui.form textarea,
.ui.form input[type="date"],
.ui.form input[type="datetime-local"],
.ui.form input[type="email"],
.ui.form input[type="file"],
.ui.form input[type="number"],
.ui.form input[type="password"],
.ui.form input[type="search"],
.ui.form input[type="tel"],
.ui.form input[type="text"],
.ui.form input[type="time"],
.ui.form input[type="url"],
.ui.selection.dropdown,
.ui.checkbox label:before,
.ui.checkbox input:checked ~ label:before,
.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;
}