mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [AAE-12782] Create custom theme * copied ui from ACA * fix some lints * Added theme * Added theme * lint part 1 * lint part 2 * lint part 3 backg color * lint part 4 * lint part 5 * lint part 6 * lint part 7 * update * fix map_merge
23 lines
687 B
SCSS
23 lines
687 B
SCSS
@use 'sass:map';
|
|
@import '@angular/material/theming';
|
|
@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);
|