mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
[AAE-12782] Custom theme creation (#8450)
* [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
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
@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);
|
||||
Reference in New Issue
Block a user