blur-admin/docs/contents/articles/014-switch-to-blur-theme/index.md

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:

  1. 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',
    },
  });
  1. Replace theme in src/sass/theme/common.scss file:
@import 'theme/conf/colorScheme/mint';

to

@import 'theme/conf/colorScheme/blur';