Files
wgenerator/src/custom-theme.scss
2026-03-09 17:02:18 +01:00

23 lines
692 B
SCSS

@use '@angular/material' as mat;
// Include the common styles for Angular Material once.
@include mat.all-component-typographies();
@include mat.elevation-classes();
@include mat.app-background();
$wgenerator-primary: mat.m2-define-palette(mat.$m2-indigo-palette);
$wgenerator-accent: mat.m2-define-palette(mat.$m2-pink-palette, A200, A100, A400);
$wgenerator-warn: mat.m2-define-palette(mat.$m2-red-palette);
$wgenerator-theme: mat.m2-define-light-theme((
color: (
primary: $wgenerator-primary,
accent: $wgenerator-accent,
warn: $wgenerator-warn,
),
typography: mat.m2-define-typography-config(),
density: 0,
));
@include mat.all-component-themes($wgenerator-theme);