From 4d50da91c03e207288dd49f6ce62471294e27ff9 Mon Sep 17 00:00:00 2001 From: Bartosz Sekula Date: Thu, 13 Apr 2023 11:25:13 +0200 Subject: [PATCH] [AAE-12782] Custom theme - add custom color for app-bar (#8452) --- lib/core/custom-theme/theme/custom-background-color.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/core/custom-theme/theme/custom-background-color.scss b/lib/core/custom-theme/theme/custom-background-color.scss index 4c2783daf4..96b6118fd7 100644 --- a/lib/core/custom-theme/theme/custom-background-color.scss +++ b/lib/core/custom-theme/theme/custom-background-color.scss @@ -6,12 +6,14 @@ $card: map.get($background, card); $new-card-color: color.adjust($background-color, $lightness: 10%); - $new-selected-button: color.adjust($background-color, $lightness: 5%); + $new-app-bar: color.adjust($background-color, $lightness: 5%); + $new-selected-button: color.adjust($background-color, $lightness: 7%); $background: map.merge($background, (background: $background-color)); $background: map.merge($background, (card: $new-card-color)); $background: map.merge($background, (modal: $new-card-color)); $background: map.merge($background, (dialog: $new-card-color)); + $background: map.merge($background, (app-bar: $new-app-bar)); $background: map.merge($background, (selected-button: $new-selected-button)); $theme-with-new-background: map.merge($theme, (background: $background));