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 { :root {
--background: #121212; --background: #212121;
--text: #FFF; --text: #FFFFFF;
--secondary-hover: #73828c; --secondary-hover: #73828c;
--secondary-focus: #616161; --secondary-focus: #606060;
--secondary-inverse: #FFF; --secondary-inverse: #FFF;
--primary-background:#303030; --primary-background: #757575;
--secondary-background: #424242; --secondary-background: #424242;
--link: #22aaff; --link: #00B0FF;
--link-visited: #7755ff; --link-visited: #40C4FF;
--buttom: #dcdcdb; --buttom: #dcdcdb;
--buttom-text: #415462; --buttom-text: #415462;
--button-border: #91918c; --button-border: #91918c;
--buttom-hover: #BBB; --buttom-hover: #BBB;
--search-text: #FFF; --search-text: #FFF;
--time-background: #000; --time-background: #212121;
--time-text: #FFF; --time-text: #FFF;
} }

View File

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

View File

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

View File

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