mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
19 lines
768 B
SCSS
19 lines
768 B
SCSS
@use 'sass:map';
|
|
@use 'theme-configuration';
|
|
@use 'typography';
|
|
@use 'custom-theme-palettes';
|
|
@use 'custom-background-color';
|
|
@use 'custom-text-color';
|
|
|
|
$primary-color: map.get(theme-configuration.$theme-config, 'primaryColor');
|
|
$accent-color: map.get(theme-configuration.$theme-config, 'accentColor');
|
|
$background-color: map.get(theme-configuration.$theme-config, 'backgroundColor');
|
|
|
|
$text-color: map.get(theme-configuration.$theme-config, 'textColor');
|
|
$base-font-size: map.get(theme-configuration.$theme-config, 'baseFontSize');
|
|
$font-family: map.get(theme-configuration.$theme-config, 'fontFamily');
|
|
|
|
$app-typography: typography.get-mat-typography($base-font-size, $font-family);
|
|
|
|
$palettes: custom-theme-palettes.get-mat-palettes($primary-color, $accent-color);
|