mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-06-09 17:44:59 +00:00
19 lines
640 B
SCSS
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);
|