diff --git a/demo/src/styles.scss b/demo/src/styles.scss index aaa13281e5..fa3e33e470 100644 --- a/demo/src/styles.scss +++ b/demo/src/styles.scss @@ -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); +} diff --git a/projects/core/src/style/themes/teal.theme.scss b/projects/core/src/style/themes/teal.theme.scss new file mode 100644 index 0000000000..0f728a2e7e --- /dev/null +++ b/projects/core/src/style/themes/teal.theme.scss @@ -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 +);