Add dark theme for Web UI
This commit is contained in:
parent
18d90ecd96
commit
389536aff0
12 changed files with 98 additions and 6 deletions
|
@ -42,6 +42,9 @@ body {
|
|||
.bg-app-toggle {
|
||||
background-color: rgba( $accent, .1 );
|
||||
}
|
||||
.body--dark .bg-app-toggle {
|
||||
background-color: rgba( $accent, .3 );
|
||||
}
|
||||
|
||||
// Helps
|
||||
.xs-text-center {
|
||||
|
@ -157,3 +160,26 @@ body {
|
|||
background-color: rgba($app-text-grey, 0.1);
|
||||
}
|
||||
}
|
||||
.body--dark .app-chip {
|
||||
&-accent, &-rule {
|
||||
background-color: rgba($accent, 0.25);
|
||||
}
|
||||
&-green, &-entry-points {
|
||||
background-color: rgba($app-text-green, 0.25);
|
||||
}
|
||||
&-purple, &-name {
|
||||
background-color: rgba($app-text-purple, 0.25);
|
||||
}
|
||||
&-warning, &-service {
|
||||
background-color: rgba($warning, 0.25);
|
||||
}
|
||||
&-negative, &-error {
|
||||
background-color: rgba($negative, 0.25);
|
||||
}
|
||||
&-green-2, &-options {
|
||||
background-color: rgba($app-text-green-2, 0.25);
|
||||
}
|
||||
&-marine, &-interval {
|
||||
background-color: rgba($app-text-grey, 0.25);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue