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