diff --git a/projects/aca-content/src/lib/ui/theme.scss b/projects/aca-content/src/lib/ui/theme.scss index 9007e9b2d..34d4736fe 100644 --- a/projects/aca-content/src/lib/ui/theme.scss +++ b/projects/aca-content/src/lib/ui/theme.scss @@ -235,7 +235,7 @@ mat-snack-bar-container { } .adf-info-snackbar { - --mdc-snackbar-container-color: var(--theme-primary-color); + --mdc-snackbar-container-color: var(--theme-info-snackbar-background); } .adf-error-snackbar { diff --git a/projects/aca-content/src/lib/ui/variables/variables.scss b/projects/aca-content/src/lib/ui/variables/variables.scss index aa2e77f54..5143797e7 100644 --- a/projects/aca-content/src/lib/ui/variables/variables.scss +++ b/projects/aca-content/src/lib/ui/variables/variables.scss @@ -42,6 +42,7 @@ $search-chip-icon-color: #757575; $disabled-chip-background-color: #f5f5f5; $contrast-gray: mat.get-color-from-palette($foreground, 'secondary-tex'); $search-highlight-background-color: #ffd180; +$info-snackbar-background: #1f74db; // CSS Variables $defaults: ( @@ -67,6 +68,7 @@ $defaults: ( --theme-grey-background-color: $grey-background, --theme-grey-hover-background-color: $grey-hover-background, --theme-blue-button-color: $blue-save-button-background, + --theme-info-snackbar-background: $info-snackbar-background, --theme-heading-color: $black-heading, --theme-dropdown-color: $theme-dropdown-background, --theme-dropdown-background-hover: $theme-dropdown-background-hover,