change default color for wallet

This commit is contained in:
bechi 2015-05-11 10:18:18 -03:00
commit 1c3af263ea
4 changed files with 7 additions and 7 deletions

View file

@ -339,7 +339,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] || '#2C3E50';
self.backgroundColor = config.colorFor[self.walletId] || '#7A8C9E';
var fc = profileService.focusedClient;
fc.backgroundColor = self.backgroundColor;
};