sass-references/angular-material/material/core/theming/prebuilt/indigo-pink.scss

26 lines
599 B
SCSS
Raw Normal View History

2024-12-06 10:42:08 +08:00
@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);