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

26 lines
616 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.$pink-palette, 700, 500, 900);
$accent: m2.define-palette(m2.$blue-grey-palette, A200, A100, A400);
$theme: m2.define-dark-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);