mirror of
https://github.com/weaveworks/scope.git
synced 2026-07-18 04:49:55 +00:00
16 lines
462 B
SCSS
16 lines
462 B
SCSS
// Load the default theme initially to apply it on the global html level.
|
|
@import "default-theme";
|
|
@import "base";
|
|
@import "terminal";
|
|
|
|
.scope-app.contrast-mode {
|
|
// Load the contrast theme and reload all the CSS in the scope-app container.
|
|
@import "contrast-theme";
|
|
@import "base";
|
|
}
|
|
.scope-app:not(.contrast-mode) {
|
|
// Load the default theme and reload all the CSS in the scope-app container.
|
|
@import "default-theme";
|
|
@import "base";
|
|
}
|