-
Notifications
You must be signed in to change notification settings - Fork 0
/
theming.scss
30 lines (28 loc) · 836 Bytes
/
theming.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
@import "@angular/material/theming";
@import "../app/app.component";
// Default Theme
// Light DeepPurple Amber
$light-deeppurple-amber: mat-light-theme(
(
color: (
primary: mat-palette($mat-deep-purple),
accent: mat-palette($mat-amber, A200, A100, A400),
),
)
);
@include angular-material-theme($light-deeppurple-amber);
@include app-theme-color($light-deeppurple-amber);
// Other Themes
// Dark Pink BlueGrey
body[data-theme="dark-pink-bluegrey"] {
$dark-pink-bluegrey: mat-dark-theme(
(
color: (
primary: mat-palette($mat-pink),
accent: mat-palette($mat-blue-grey, A200, A100, A400),
),
)
);
@include angular-material-color($dark-pink-bluegrey);
@include app-theme-color($dark-pink-bluegrey);
}