Skip to content

Commit

Permalink
fix(dark): better dark mode
Browse files Browse the repository at this point in the history
fix #1092
  • Loading branch information
vogloblinsky committed Jul 9, 2021
1 parent f846caf commit f93090b
Showing 1 changed file with 23 additions and 14 deletions.
37 changes: 23 additions & 14 deletions src/resources/styles/dark.css
@@ -1,15 +1,24 @@
body {
background: black;
color: #c7c7c7;
background: #212121;
color: #fafafa;
}

code {
color: #e09393;
}

a,
.menu ul.list li a.active {
color: #7fc9ff;
}

.menu {
background: #050505;
background: #212121;
border-right: 1px solid #444;
}

.menu ul.list li a {
color: #c7c7c7;
color: #fafafa;
}

.menu ul.list li.divider {
Expand All @@ -27,10 +36,10 @@ body {
}

#book-search-input {
background: #050505;
background: #212121;
border-top: 1px solid #444;
border-bottom: 1px solid #444;
color: #c7c7c7;
color: #fafafa;
}

.table-bordered {
Expand All @@ -48,7 +57,7 @@ body {

.coverage a,
.coverage-count {
color: #c7c7c7;
color: #fafafa;
}

.coverage-header {
Expand All @@ -60,28 +69,28 @@ body {
fill: white;
}
.routes svg rect {
fill: black !important;
fill: #212121 !important;
}

.navbar-default,
.btn-default {
background-color: black;
border-color: #444;
color: #c7c7c7;
color: #fafafa;
}

.navbar-default .navbar-brand {
color: #c7c7c7;
color: #fafafa;
}

.overview .card,
.modules .card {
background: black;
color: #c7c7c7;
background: #171717;
color: #fafafa;
border: 1px solid #444;
}
.overview .card a {
color: #c7c7c7;
color: #fafafa;
}

.modules .card-header {
Expand All @@ -100,5 +109,5 @@ body {

table.params thead {
background: #484848;
color: #c7c7c7;
color: #fafafa;
}

0 comments on commit f93090b

Please sign in to comment.