fix(colorScheme): make mint theme default

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

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

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

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

Loading…
Cancel
Save