15 lines
278 B
SCSS
15 lines
278 B
SCSS
|
|
@use '../../theming/palettes';
|
||
|
|
@use '../../../core/tokens/m3-system';
|
||
|
|
|
||
|
|
html {
|
||
|
|
@include m3-system.theme((
|
||
|
|
color: (
|
||
|
|
theme-type: light,
|
||
|
|
primary: palettes.$rose-palette,
|
||
|
|
tertiary: palettes.$red-palette,
|
||
|
|
),
|
||
|
|
typography: Roboto,
|
||
|
|
density: 0,
|
||
|
|
));
|
||
|
|
}
|