From 1e15e8058f70cf6a732c1544fc63070de8d8e9b3 Mon Sep 17 00:00:00 2001 From: bechi Date: Wed, 15 Apr 2015 17:12:39 -0300 Subject: [PATCH] fix colours --- src/css/main.css | 2 +- src/css/mobile.css | 3 ++- src/js/controllers/preferencesColor.js | 10 ++++++---- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/css/main.css b/src/css/main.css index 352ae07bb..498f77a27 100644 --- a/src/css/main.css +++ b/src/css/main.css @@ -867,7 +867,7 @@ input.ng-invalid-match, input.ng-invalid-match:focus { .text-primary {color: #1ABC9C;} .text-secondary {color: #3498DB;} .text-white {color: #fff;} -.text-warning {color: #CA5649;} +.text-warning {color: #ED4A43;} .text-success {color: #1ABC9C;} .panel { diff --git a/src/css/mobile.css b/src/css/mobile.css index 1e0e4e506..01de79460 100644 --- a/src/css/mobile.css +++ b/src/css/mobile.css @@ -1,3 +1,4 @@ + /* * * Copay mobile CSS @@ -616,7 +617,7 @@ a.pin-button:active { .popup-txrejected i { font-size: 5rem; - background-color: #CA5649; + background-color: #ED4A43; color: #fff; border-radius: 100%; width: 150px; diff --git a/src/js/controllers/preferencesColor.js b/src/js/controllers/preferencesColor.js index d37529b47..7d9b58853 100644 --- a/src/js/controllers/preferencesColor.js +++ b/src/js/controllers/preferencesColor.js @@ -4,12 +4,14 @@ angular.module('copayApp.controllers').controller('preferencesColorController', function($scope, configService, profileService, go) { var config = configService.getSync(); this.colorOpts = [ - '#1ABC9C', + '#F38F12', + '#F4D03F', '#4A90E2', - '#F39C12', - '#FF3366', + '#484ED3', '#9B59B6', - '#213140', + '#E856EF', + '#F883B4', + '#2C3E50', ]; var fc = profileService.focusedClient;