fixed the primary text color (#3105)

This commit is contained in:
Yasa-Nataliya
2023-04-06 09:37:59 +00:00
committed by GitHub
parent af4d1ab2bd
commit 5ae99da59d
3 changed files with 12 additions and 8 deletions

View File

@@ -2,6 +2,10 @@
box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.02), 0 6px 10px 0 rgba(0, 0, 0, 0.014), 0 1px 18px 0 rgba(0, 0, 0, 0.012); box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.02), 0 6px 10px 0 rgba(0, 0, 0, 0.014), 0 1px 18px 0 rgba(0, 0, 0, 0.012);
z-index: 2; z-index: 2;
adf-layout-header .mat-toolbar-single-row {
color: var(--theme-header-text-color) !important;
}
.mat-toolbar { .mat-toolbar {
background-image: var(--header-background-image) !important; background-image: var(--header-background-image) !important;
background-repeat: no-repeat !important; background-repeat: no-repeat !important;

View File

@@ -24,10 +24,10 @@ $aca-primary-blue: (
700: white, 700: white,
800: $white-87-opacity, 800: $white-87-opacity,
900: $white-87-opacity, 900: $white-87-opacity,
A100: $black-87-opacity, A100: white,
A200: white, A200: white,
A400: white, A400: white,
A700: white, A700: white
) )
); );
$aca-accent-green: ( $aca-accent-green: (
@@ -59,7 +59,7 @@ $aca-accent-green: (
A100: $black-87-opacity, A100: $black-87-opacity,
A200: white, A200: white,
A400: white, A400: white,
A700: white, A700: white
) )
); );
$aca-warn: ( $aca-warn: (
@@ -91,6 +91,6 @@ $aca-warn: (
A100: $black-87-opacity, A100: $black-87-opacity,
A200: white, A200: white,
A400: white, A400: white,
A700: white, A700: white
) )
); );

View File

@@ -22,15 +22,15 @@ $adf-upload-dragging-level1-border: none;
$grey-background: rgba(33, 33, 33, 0.12); $grey-background: rgba(33, 33, 33, 0.12);
$grey-text-background: rgba(33, 33, 33, 0.05); $grey-text-background: rgba(33, 33, 33, 0.05);
$grey-hover-background: rgba(33, 33, 33, 0.24); $grey-hover-background: rgba(33, 33, 33, 0.24);
$blue-save-button-background: #1F74DB; $blue-save-button-background: #1f74db;
$black-heading: #4e4c4c; $black-heading: #4e4c4c;
$grey-dropdown-background: #eee; $grey-dropdown-background: #eee;
$grey-divider: rgba(0,0,0,.22); $grey-divider: rgba(0, 0, 0, 0.22);
$pagination-background-color: #fff; $pagination-background-color: #fff;
$datetimepicker-font-color: rgba(black, 0.87); $datetimepicker-font-color: rgba(black, 0.87);
$datetimepicker-selected-date-background: #2254b2; $datetimepicker-selected-date-background: #2254b2;
$datetimepicker-cell-background-color: #fff; $datetimepicker-cell-background-color: #fff;
$datetimepicker-cell-focus-border-color: #1F74DB; $datetimepicker-cell-focus-border-color: #1f74db;
$datetimepicker-cell-focus-background-color: rgba(33, 33, 33, 0.12); $datetimepicker-cell-focus-background-color: rgba(33, 33, 33, 0.12);
// CSS Variables // CSS Variables
@@ -52,7 +52,7 @@ $defaults: (
--theme-secondary-text-color: mat.get-color-from-palette($foreground, secondary-text), --theme-secondary-text-color: mat.get-color-from-palette($foreground, secondary-text),
--theme-divider-color: mat.get-color-from-palette($foreground, divider, 0.07), --theme-divider-color: mat.get-color-from-palette($foreground, divider, 0.07),
--theme-dialog-background-color: mat.get-color-from-palette($background, dialog), --theme-dialog-background-color: mat.get-color-from-palette($background, dialog),
--theme-header-text-color: mat.get-color-from-palette($foreground, text, 0.87),
--new-button-font-size: 0.9rem, --new-button-font-size: 0.9rem,
--theme-grey-text-background-color: $grey-text-background, --theme-grey-text-background-color: $grey-text-background,
--theme-grey-background-color: $grey-background, --theme-grey-background-color: $grey-background,