fix(colorScheme): make mint theme default

pull/46/head
KostyaDanovsky 9 years ago
parent f50a7adbbf
commit ba38387754

@ -10,12 +10,14 @@
/** @ngInject */ /** @ngInject */
function config(baConfigProvider, colorHelper) { function config(baConfigProvider, colorHelper) {
//baConfigProvider.theme.blur = false; //baConfigProvider.changeTheme({blur: true});
// //
//var colors = baConfigProvider.colors; //baConfigProvider.changeColors({
//colors.default = '#ffffff'; // default: 'rgba(#000000, 0.2)',
//colors.defaultText = '#666666'; // defaultText: '#ffffff',
//colors.dashboard.white = '#10c4b5'; // dashboard: {
//colors.dashboard.whiteDark = colorHelper.shade(colors.dashboard.white, 5); // white: '#ffffff',
// },
//});
} }
})(); })();

@ -6,8 +6,8 @@
'use strict'; 'use strict';
var basic = { var basic = {
default: 'rgba(#000000, 0.2)', default: '#ffffff',
defaultText: '#ffffff', defaultText: '#666666',
border: '#dddddd', border: '#dddddd',
borderDark: '#aaaaaa', borderDark: '#aaaaaa',
}; };
@ -27,7 +27,7 @@
surfieGreen: '#0e8174', surfieGreen: '#0e8174',
silverTree: '#6eba8c', silverTree: '#6eba8c',
gossip: '#b9f2a1', gossip: '#b9f2a1',
white: '#ffffff', white: '#10c4b5',
}; };
angular.module('BlurAdmin.theme') angular.module('BlurAdmin.theme')
@ -37,7 +37,7 @@
function configProvider(colorHelper) { function configProvider(colorHelper) {
var conf = { var conf = {
theme: { theme: {
blur: true, blur: false,
}, },
colors: { colors: {
default: basic.default, default: basic.default,

@ -1,3 +1,3 @@
@import 'theme/conf/mixins'; @import 'theme/conf/mixins';
@import 'theme/conf/colorScheme/blur'; @import 'theme/conf/colorScheme/mint';
@import 'theme/conf/variables'; @import 'theme/conf/variables';

Loading…
Cancel
Save