You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/shared/theme/skins/teal.scss

24 lines
787 B
SCSS

@import './color-swatches/day-foreground.scss';
@import './color-swatches/day-background.scss';
@import './color-swatches/red-warn.swatch.scss';
@import '~@angular/material/theming';
@include mat-core();
@function create-custom-theme($primary, $accent, $warn: mat-palette($mat-red)) {
@return (
primary: $primary,
accent: $accent,
warn: $warn,
is-dark: false,
foreground: $custom-day-theme-foreground,
background: $custom-day-theme-background
);
}
$teal-primary: mat-palette($mat-teal, 800, 300, A200);
$teal-accent: mat-palette($mat-amber, A200, A100, A700);
$teal-warn: mat-palette($red-warn, 500);
$teal-day-theme: create-custom-theme($teal-primary, $teal-accent, $teal-warn);
$teal-night-theme: mat-dark-theme($teal-primary, $teal-accent, $teal-warn);