Dark mode colour improvements

This commit is contained in:
2020-06-24 12:04:32 +01:00
parent 141e1c94d7
commit b28377e1f5
3 changed files with 583 additions and 566 deletions

File diff suppressed because one or more lines are too long

View File

@@ -2,11 +2,11 @@ $font-family-sans-serif: "Open Sans", sans-serif;
//Make it look less primary school
$font-size-base: 0.875rem;
$theme-colors: (
"yellow": #ffd351,
"success": #3b7743,
"warning": #D3963B,
"danger": #A94447,
"info": #B8FAFF,
"yellow": #FF8800,
"success": #00C851,
"warning": #ffbb33,
"danger": #CC0000,
"info": #33b5e5,
"primary": #4CB8F1
) !default;
$enable-shadows: true;

View File

@@ -3,6 +3,10 @@
@import 'node_modules/@forevolve/bootstrap-dark/scss/bootstrap-dark.scss';
background: #222;
color: $gray-100;
.dropdown-menu {
box-shadow: 0 0.5rem 1rem black;
color: $gray-100;
}
.form-control {
background: #121416;
color: $gray-100;
@@ -16,6 +20,12 @@
a {
color: $blue;
}
.btn {
color: white;
}
.badge {
color: white;
}
}
@import "custom-variables";
@import "node_modules/bootstrap/scss/bootstrap";