From 0d7d81723f67edde2e07bc99f7234ef6d2f575c7 Mon Sep 17 00:00:00 2001 From: btroncone Date: Wed, 13 Dec 2017 14:38:02 -0500 Subject: [PATCH] style(theme): darken application accent color --- src/styles.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles.scss b/src/styles.scss index 047a0795..5030d9c6 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -1,11 +1,11 @@ -@import "~@angular/material/theming"; +@import '~@angular/material/theming'; @import './app/operators/operator-theme'; @import './styles/code-helpers'; @include mat-core(); // Define the theme. $primary: mat-palette($mat-indigo); -$accent : mat-palette($mat-pink); +$accent: mat-palette($mat-pink, 600); $theme: mat-light-theme($primary, $accent); @include angular-material-theme($theme);