Fix wrong grey theme color on body element

This commit is contained in:
Marcos Moura 2016-07-26 01:48:31 -03:00
parent 4f8230942d
commit 04996489d2
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ const VALID_THEME_TYPE = ['primary', 'accent', 'background', 'warn'];
const DEFAULT_THEME_COLORS = {
primary: 'indigo',
accent: 'pink',
background: 'white',
background: 'grey',
warn: 'deep-orange'
};

View file

@ -1,4 +1,4 @@
body.THEME_NAME {
color: rgba(0, 0, 0, .87);
background-color: BACKGROUND-COLOR-50;
background-color: BACKGROUND-COLOR-A100;
}