[FIX #3229] Change home add button on ios to blue

Signed-off-by: Julien Eluard <julien.eluard@gmail.com>
This commit is contained in:
KatieStarks 2018-02-22 19:00:13 -08:00 committed by Julien Eluard
parent 0da3ccd5ea
commit 847795f3a7
No known key found for this signature in database
GPG Key ID: 6FD7DB5437FCBEF6
3 changed files with 19 additions and 7 deletions

View File

@ -9,7 +9,8 @@
(def gray "#939ba1") ;; Used as a background for a light foreground and as section header and secondary text color
(def gray-light "#e8ebec") ;; Used as divider color
(def gray-lighter "#eef2f5") ;; Used as a background or shadow
(def blue "#4360df") ;; Used as main wallet color
(def blue "#4360df") ;; Used as main wallet color, and ios home add button
(def blue-transparent "rgba(67, 96, 223, 0.10)") ;; Used as shadow on ios home add button
(def red "#ff2d55") ;; Used to highlight errors or "dangerous" actions
(def text-light-gray "#212121") ;; Used for labels (home items)

View File

@ -1,5 +1,6 @@
(ns status-im.ui.components.styles
(:require [status-im.utils.platform :as platform]))
(:require [status-im.utils.platform :as platform]
[status-im.ui.components.colors :as colors]))
;; TODO(oskarth): Make a palette of all these colors
@ -98,8 +99,16 @@
:height 24})
(def icon-add
{:width 14
:height 14})
{:width 14
:height 14
:color colors/blue
:container-style {:background-color colors/blue-transparent
:border-radius 32
:width 32
:height 32
:display :flex
:justify-content :center
:align-items :center}})
(def icon-ok
{:width 18

View File

@ -1,9 +1,11 @@
(ns status-im.ui.components.toolbar.actions
(:require [re-frame.core :as re-frame]))
(:require [re-frame.core :as re-frame]
[status-im.ui.components.styles :as styles]))
(defn add [handler]
{:icon :icons/add
:handler handler})
{:icon :icons/add
:icon-opts styles/icon-add
:handler handler})
(defn opts [options]
{:icon :icons/options