Bartosz Sekula 3c7e8e84ff
AAE-31712 Custom theme fix after ng17 update (#10661)
* AAE-31712 Fix custom theme after Angular17 update

* update
2025-02-18 13:58:29 +01:00

19 lines
640 B
SCSS

@use 'sass:map';
@import './theme-configuration';
@import './typography';
@import './custom-theme-palettes';
@import './custom-background-color';
@import './custom-text-color';
$primary-color: map.get($theme-config, 'primaryColor');
$accent-color: map.get($theme-config, 'accentColor');
$background-color: map.get($theme-config, 'backgroundColor');
$text-color: map.get($theme-config, 'textColor');
$base-font-size: map.get($theme-config, 'baseFontSize');
$font-family: map.get($theme-config, 'fontFamily');
$app-typography: get-mat-typography($base-font-size, $font-family);
$palettes: get-mat-palettes($primary-color, $accent-color);