Add default hues

This commit is contained in:
Marcos Moura 2016-08-16 22:46:18 -03:00
parent 3abea8ea07
commit d7b0117c16

View file

@ -8,6 +8,18 @@ const DEFAULT_THEME_COLORS = {
background: 'grey',
warn: 'deep-orange'
};
const DEFAULT_HUES = {
accent: {
'hue-1': 'A100',
'hue-2': 'A400',
'hue-3': 'A700'
},
background: {
'hue-1': 'A100',
'hue-2': '100',
'hue-3': '300'
}
};
const createNewStyleElement = (style, name) => {
let head = document.head;