mirror of https://github.com/akveo/blur-admin
632 B
632 B
title | author | sort | group | template |
---|---|---|---|---|
Switching to Blur Theme | kd | 1000 | Customization | article.jade |
If you want to switch theme to the blur, you need to do 2 simple steps:
- Override theme and colors in config (
src/app/theme/theme.config.js
):
baConfigProvider.changeTheme({blur: true});
baConfigProvider.changeColors({
default: 'rgba(#000000, 0.2)',
defaultText: '#ffffff',
dashboard: {
white: '#ffffff',
},
});
- Replace theme in
src/sass/theme/common.scss
file:
@import 'theme/conf/colorScheme/mint';
to
@import 'theme/conf/colorScheme/blur';