Make text more readable in dark mode
This commit is contained in:
parent
b4ca02da86
commit
15f50553e9
2 changed files with 11 additions and 0 deletions
|
@ -107,6 +107,10 @@ export default defineComponent({
|
||||||
&.bg-app-toggle {
|
&.bg-app-toggle {
|
||||||
color: $accent !important;
|
color: $accent !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.body--dark &.bg-app-toggle {
|
||||||
|
color: lighten($accent, 25%) !important;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
:deep(.bar-search) {
|
:deep(.bar-search) {
|
||||||
|
|
|
@ -173,23 +173,30 @@ body {
|
||||||
.body--dark .app-chip {
|
.body--dark .app-chip {
|
||||||
&-accent, &-rule {
|
&-accent, &-rule {
|
||||||
background-color: rgba($accent, 0.25);
|
background-color: rgba($accent, 0.25);
|
||||||
|
color: lighten($accent, 25%);
|
||||||
}
|
}
|
||||||
&-green, &-entry-points {
|
&-green, &-entry-points {
|
||||||
background-color: rgba($app-text-green, 0.25);
|
background-color: rgba($app-text-green, 0.25);
|
||||||
|
color: lighten($app-text-green, 25%);
|
||||||
}
|
}
|
||||||
&-purple, &-name {
|
&-purple, &-name {
|
||||||
background-color: rgba($app-text-purple, 0.25);
|
background-color: rgba($app-text-purple, 0.25);
|
||||||
|
color: lighten($app-text-purple, 25%);
|
||||||
}
|
}
|
||||||
&-warning, &-service {
|
&-warning, &-service {
|
||||||
background-color: rgba($warning, 0.25);
|
background-color: rgba($warning, 0.25);
|
||||||
|
color: lighten($warning, 25%);
|
||||||
}
|
}
|
||||||
&-negative, &-error {
|
&-negative, &-error {
|
||||||
background-color: rgba($negative, 0.25);
|
background-color: rgba($negative, 0.25);
|
||||||
|
color: lighten($negative, 25%);
|
||||||
}
|
}
|
||||||
&-green-2, &-options {
|
&-green-2, &-options {
|
||||||
background-color: rgba($app-text-green-2, 0.25);
|
background-color: rgba($app-text-green-2, 0.25);
|
||||||
|
color: lighten($app-text-green-2, 25%);
|
||||||
}
|
}
|
||||||
&-marine, &-interval {
|
&-marine, &-interval {
|
||||||
background-color: rgba($app-text-grey, 0.25);
|
background-color: rgba($app-text-grey, 0.25);
|
||||||
|
color: lighten($app-text-grey, 25%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue