refactor(pieCharts): use white color

pull/3/head
alex 2016-02-08 19:33:40 +03:00
parent cebd46c8f0
commit a8912c1638
1 changed files with 4 additions and 4 deletions

View File

@ -11,22 +11,22 @@
/** @ngInject */ /** @ngInject */
function DashboardPieChartCtrl($scope, $element, $window, $timeout) { function DashboardPieChartCtrl($scope, $element, $window, $timeout) {
$scope.charts = [{ $scope.charts = [{
color: '#41bee9', color: 'rgba(255,255,255,0.4)',
description: 'New Visits', description: 'New Visits',
stats: '57,820', stats: '57,820',
icon: 'person', icon: 'person',
}, { }, {
color: '#9D498C', color: 'rgba(255,255,255,0.4)',
description: 'Purchases', description: 'Purchases',
stats: '$ 89,745', stats: '$ 89,745',
icon: 'money', icon: 'money',
}, { }, {
color: '#bbcb50', color: 'rgba(255,255,255,0.4)',
description: 'Active Users', description: 'Active Users',
stats: '178,391', stats: '178,391',
icon: 'face', icon: 'face',
}, { }, {
color: '#5FBCBB', color: 'rgba(255,255,255,0.4)',
description: 'Returned', description: 'Returned',
stats: '32,592', stats: '32,592',
icon: 'refresh', icon: 'refresh',