26 lines
599 B
SCSS
26 lines
599 B
SCSS
@use '../all-theme';
|
|
@use '../../core';
|
|
@use '../../m2';
|
|
@use '../../typography/typography';
|
|
|
|
@include core.app-background();
|
|
@include core.elevation-classes();
|
|
|
|
// Define a theme.
|
|
$primary: m2.define-palette(m2.$indigo-palette);
|
|
$accent: m2.define-palette(m2.$pink-palette, A200, A100, A400);
|
|
|
|
$theme: m2.define-light-theme((
|
|
color: (
|
|
primary: $primary,
|
|
accent: $accent
|
|
),
|
|
typography: m2.define-typography-config(),
|
|
density: 0,
|
|
));
|
|
|
|
// Include all theme styles for the components.
|
|
@include all-theme.all-component-themes($theme);
|
|
|
|
@include typography.typography-hierarchy($theme);
|