blur theme is now default

This commit is contained in:
nixa 2016-05-17 13:34:52 +03:00
parent 097257b5d7
commit e7595af72c
12 changed files with 44 additions and 9 deletions

View file

@ -70,4 +70,12 @@ export class BaThemeConfigProvider {
get() {
return this.conf;
}
changeTheme (theme) {
_.merge(this.get().theme, theme);
}
changeColors (colors) {
_.merge(this.get().colors, colors);
}
}