forked from angular/components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.scss
More file actions
23 lines (18 loc) · 937 Bytes
/
Copy paththeme.scss
File metadata and controls
23 lines (18 loc) · 937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@use '@angular/material' as mat;
// Plus imports for other components in your app.
// Disable legacy API compatibility, since e2e-app is fully migrated to theme inspection API.
mat.$theme-legacy-inspection-api-compatibility: false;
// Include the common styles for Angular Material. We include this here so that you only
// have to load a single css file for Angular Material in your app.
// **Be sure that you only ever include this mixin once!**
@include mat.core();
// Define the default theme (same as the example above).
$candy-app-primary: mat.define-palette(mat.$indigo-palette);
$candy-app-accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
$candy-app-theme: mat.define-light-theme((
color: (primary: $candy-app-primary, accent: $candy-app-accent),
typography: mat.define-typography-config(),
density: 0
));
// Include the default theme styles.
@include mat.all-component-themes($candy-app-theme);