Files
PyRIGS/RIGS/static/scss/dark_screen.scss
2020-06-25 18:59:24 +01:00

44 lines
1010 B
SCSS

[data-theme='dark'] {
$theme-colors: (
"success": #678f75,
"warning": #FFE89B,
"danger": #9f4c49,
"info": #006b8e,
"primary": #4CB8F1
);
@import "custom-variables";
@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;
background: #121416;
}
.form-control {
background-color: #121416;
color: $gray-100;
border-color: #121416;
}
.btn-light, .popover-header, .status {
background-color: #121416 !important;
color: $gray-100 !important;
border-color: #121416;
}
a {
color: $blue;
}
.badge {
color: black;
}
.badge-dark, .badge-secondary, .btn-primary {
color: $gray-100;
}
.input-group-text {
border-color: #121416;
}
.page-item.disabled {
opacity: 0.5;
}
}