add more colours

This commit is contained in:
bechi 2015-05-29 11:43:38 -03:00
commit e95228e37b
4 changed files with 10 additions and 7 deletions

View file

@ -382,7 +382,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
self.updateColor = function() {
var config = configService.getSync();
config.colorFor = config.colorFor || {};
self.backgroundColor = config.colorFor[self.walletId] || '#7A8C9E';
self.backgroundColor = config.colorFor[self.walletId] || '#F38F12';
var fc = profileService.focusedClient;
fc.backgroundColor = self.backgroundColor;
};