-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
51fc89a
commit 5aeaa43
Showing
3 changed files
with
30 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
@use '@angular/material' as mat; | ||
// Plus imports for other components in your app. | ||
|
||
// 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 palettes for your theme using the Material Design palettes available in palette.scss | ||
// (imported above). For each palette, you can optionally specify a default, lighter, and darker | ||
// hue. | ||
$app-primary: mat.define-palette(mat.$blue-palette, 500); | ||
$app-accent: mat.define-palette(mat.$indigo-palette, A200, A100, A400); | ||
|
||
// The warn palette is optional (defaults to red). | ||
$app-warn: mat.define-palette(mat.$red-palette); | ||
|
||
// Create the theme object (a Sass map containing all of the palettes). | ||
$app-theme: mat.define-light-theme(( | ||
color: ( | ||
primary: $app-primary, | ||
accent: $app-accent, | ||
warn: $app-warn | ||
), | ||
density: 0 | ||
)); | ||
|
||
@include mat.all-component-themes($app-theme); |