General theme: improve colors

This commit is contained in:
Jesús 2021-01-11 21:14:07 -05:00
parent 58eea1e0f2
commit 8cc721b4ec
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766
4 changed files with 40 additions and 36 deletions

View File

@ -1,18 +1,18 @@
:root {
--background: #121212;
--text: #FFF;
--secondary-hover: #73828c;
--secondary-focus: #616161;
--secondary-inverse: #FFF;
--primary-background:#303030;
--background: #212121;
--text: #FFFFFF;
--secondary-hover: #73828c;
--secondary-focus: #606060;
--secondary-inverse: #FFF;
--primary-background: #757575;
--secondary-background: #424242;
--link: #22aaff;
--link-visited: #7755ff;
--buttom: #dcdcdb;
--buttom-text: #415462;
--button-border: #91918c;
--buttom-hover: #BBB;
--search-text: #FFF;
--time-background: #000;
--time-text: #FFF;
--link: #00B0FF;
--link-visited: #40C4FF;
--buttom: #dcdcdb;
--buttom-text: #415462;
--button-border: #91918c;
--buttom-hover: #BBB;
--search-text: #FFF;
--time-background: #212121;
--time-text: #FFF;
}

View File

@ -1,18 +1,18 @@
:root {
--background: #2d3743;
--text: #FFF;
--secondary-hover: #73828c;
--secondary-focus: rgba(115, 130, 140, 0.125);
--secondary-inverse: #FFF;
--primary-background:#35404d;
--secondary-background: #102027;
--link: #22aaff;
--link-visited: #7755ff;
--buttom: #dcdcdb;
--buttom-text: #415462;
--button-border: #91918c;
--buttom-hover: #BBB;
--search-text: #FFF;
--time-background: #000;
--time-text: #FFF;
--background: #2d3743;
--text: #FFFFFF;
--secondary-hover: #73828c;
--secondary-focus: rgba(115, 130, 140, 0.125);
--secondary-inverse: #FFFFFF;
--primary-background: #2d3743;
--secondary-background: #102027;
--link: #22aaff;
--link-visited: #7755ff;
--buttom: #DCDCDC;
--buttom-text: #415462;
--button-border: #91918c;
--buttom-hover: #BBBBBB;
--search-text: #FFFFFF;
--time-background: #212121;
--time-text: #FFFFFF;
}

View File

@ -188,15 +188,19 @@ label[for=options-toggle-cbox] {
text-align: center;
}
.table th{
.table th {
background-color: var(--secondary-background);
color: var(--text);
}
.table tbody tr:nth-child(even){
.table tbody tr:nth-child(even) {
background-color: var(--secondary-focus);
}
.table tbody tr:nth-child(2n+1) {
background-color: var(--primary-background);
}
.table thead tr th:nth-last-child(1) {
padding: 0;
}

View File

@ -2,10 +2,10 @@
--background: #FFFFFF;
--text: #212121;
--secondary-hover: #212121;
--secondary-focus: #E4E4E4;
--secondary-focus: #FAFAFA;
--secondary-inverse: #FFFFFF;
--primary-background: #CCCCCC;
--secondary-background: #F5F5F5;
--primary-background: #F5F5F5;
--secondary-background: #EEEEEE;
--link: #212121;
--link-visited: #606060;
--buttom: #DCDCDC;