Skip to content

Commit

Permalink
feat(theme): add teal theme
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarbeau committed Feb 8, 2019
1 parent 4ae282f commit 9cbc2d7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
5 changes: 5 additions & 0 deletions demo/src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,8 @@
@import '~dist/core/style/themes/dark.theme';
@include igo-all-theming($theme);
}

.teal-theme {
@import '~dist/core/style/themes/teal.theme';
@include igo-all-theming($theme);
}
9 changes: 9 additions & 0 deletions projects/core/src/style/themes/teal.theme.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
$primary: mat-palette($mat-teal,600, 600, 600);
$accent: mat-palette($mat-grey, 300);
$warn: mat-palette($mat-red);

$theme: mat-light-theme(
$primary,
$accent,
$warn
);

0 comments on commit 9cbc2d7

Please sign in to comment.