Fix colors for OR-keyword to fit theme
Signed-off-by: trivernis <trivernis@protonmail.com>pull/4/head
parent
0d08b0e7a7
commit
9f51ba410b
@ -1 +1,3 @@
|
||||
<span>{{this.stringExpression}}</span>
|
||||
<span class="property-name">{{this.propertyName}}</span>
|
||||
<span class="comparator">{{this.comparator}}</span>
|
||||
<span class="value">{{this.value}}</span>
|
||||
|
@ -0,0 +1,11 @@
|
||||
@import "src/colors";
|
||||
|
||||
.property-name {
|
||||
color: $text-darker-10
|
||||
}
|
||||
|
||||
.comparator {
|
||||
padding-left: .5em;
|
||||
padding-right: .5em;
|
||||
color: $primary-lighter-40;
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
@use "@angular/material" as mat;
|
||||
@import "styles";
|
||||
|
||||
$primary: mat.get-color-from-palette($primary-palette);
|
||||
$primary-lighter-10: lighten($primary, 10%);
|
||||
$primary-lighter-20: lighten($primary, 20%);
|
||||
$primary-lighter-30: lighten($primary, 30%);
|
||||
$primary-lighter-40: lighten($primary, 40%);
|
||||
$primary-darker-10: darken($primary, 10%);
|
||||
$primary-darker-20: darken($primary, 20%);
|
||||
$primary-darker-30: darken($primary, 30%);
|
||||
|
||||
$accent: mat.get-color-from-palette($accent-pallette, 'text');
|
||||
$accent-lighter-10: lighten($accent, 10%);
|
||||
|
||||
$text: #FFF;
|
||||
$text-darker-10: darken($text, 10%);
|
||||
|
||||
$background: #424242;
|
||||
|
||||
// specifics
|
||||
$tag-namespace: $accent-lighter-10;
|
Loading…
Reference in New Issue