mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-27 02:12:18 +00:00
Dark theme palette shenanigans
I just can't decide
This commit is contained in:
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,4 +1,11 @@
|
|||||||
[data-theme='dark'] {
|
[data-theme='dark'] {
|
||||||
|
$theme-colors: (
|
||||||
|
"success": #678f75,
|
||||||
|
"warning": #FFE89B,
|
||||||
|
"danger": #9f4c49,
|
||||||
|
"info": #006b8e,
|
||||||
|
"primary": #4CB8F1
|
||||||
|
);
|
||||||
@import "custom-variables";
|
@import "custom-variables";
|
||||||
@import 'node_modules/@forevolve/bootstrap-dark/scss/bootstrap-dark.scss';
|
@import 'node_modules/@forevolve/bootstrap-dark/scss/bootstrap-dark.scss';
|
||||||
background: #222;
|
background: #222;
|
||||||
@@ -9,23 +16,26 @@
|
|||||||
background: #121416;
|
background: #121416;
|
||||||
}
|
}
|
||||||
.form-control {
|
.form-control {
|
||||||
background: #121416;
|
background-color: #121416;
|
||||||
color: $gray-100;
|
color: $gray-100;
|
||||||
border: black !important;
|
border-color: #121416;
|
||||||
}
|
}
|
||||||
.btn-light, .popover-header, .status {
|
.btn-light, .popover-header, .status {
|
||||||
background: #121416 !important;
|
background-color: #121416 !important;
|
||||||
color: $gray-100 !important;
|
color: $gray-100 !important;
|
||||||
border: black !important;
|
border-color: #121416;
|
||||||
}
|
}
|
||||||
a {
|
a {
|
||||||
color: $blue;
|
color: $blue;
|
||||||
}
|
}
|
||||||
.btn, .badge, tr {
|
.badge {
|
||||||
color: white;
|
color: black;
|
||||||
|
}
|
||||||
|
.badge-dark, .badge-secondary, .btn-primary {
|
||||||
|
color: $gray-100;
|
||||||
}
|
}
|
||||||
.input-group-text {
|
.input-group-text {
|
||||||
border: black;
|
border-color: #121416;
|
||||||
}
|
}
|
||||||
.page-item.disabled {
|
.page-item.disabled {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
|
|||||||
@@ -82,9 +82,9 @@ function browserSyncReload(done) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function watchFiles() {
|
function watchFiles() {
|
||||||
gulp.watch("RIGS/static/scss/**/*.scss", gulp.series(styles, browserSyncReload));
|
gulp.watch("RIGS/static/scss/**/*.scss", styles);
|
||||||
// TODO This prevents reload looping, but means we don't reload if new third party scripts are added
|
// TODO This prevents reload looping, but means we don't reload if new third party scripts are added
|
||||||
gulp.watch("RIGS/static/js/src/*", gulp.series(scripts, browserSyncReload));
|
gulp.watch("RIGS/static/js/src/*", scripts);
|
||||||
gulp.watch(['templates/**/*.html', 'RIGS/templates/**/*.html', 'assets/templates/**/*.html', 'versioning/templates/**/*.html'], browserSyncReload);
|
gulp.watch(['templates/**/*.html', 'RIGS/templates/**/*.html', 'assets/templates/**/*.html', 'versioning/templates/**/*.html'], browserSyncReload);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user