Skip to content

Commit

Permalink
fix(colorScheme): make mint theme default
Browse files Browse the repository at this point in the history
  • Loading branch information
KostyaDanovsky committed May 16, 2016
1 parent f50a7ad commit ba38387
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
14 changes: 8 additions & 6 deletions src/app/theme/theme.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
// },
//});
}
})();
8 changes: 4 additions & 4 deletions src/app/theme/theme.configProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
'use strict';

var basic = {
default: 'rgba(#000000, 0.2)',
defaultText: '#ffffff',
default: '#ffffff',
defaultText: '#666666',
border: '#dddddd',
borderDark: '#aaaaaa',
};
Expand All @@ -27,7 +27,7 @@
surfieGreen: '#0e8174',
silverTree: '#6eba8c',
gossip: '#b9f2a1',
white: '#ffffff',
white: '#10c4b5',
};

angular.module('BlurAdmin.theme')
Expand All @@ -37,7 +37,7 @@
function configProvider(colorHelper) {
var conf = {
theme: {
blur: true,
blur: false,
},
colors: {
default: basic.default,
Expand Down
2 changes: 1 addition & 1 deletion src/sass/common.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@import 'theme/conf/mixins';
@import 'theme/conf/colorScheme/blur';
@import 'theme/conf/colorScheme/mint';
@import 'theme/conf/variables';

0 comments on commit ba38387

Please sign in to comment.