[FIX #3229] Change home add button on ios to blue
Signed-off-by: Julien Eluard <julien.eluard@gmail.com>
This commit is contained in:
parent
0da3ccd5ea
commit
847795f3a7
|
@ -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 "#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-light "#e8ebec") ;; Used as divider color
|
||||||
(def gray-lighter "#eef2f5") ;; Used as a background or shadow
|
(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 red "#ff2d55") ;; Used to highlight errors or "dangerous" actions
|
||||||
(def text-light-gray "#212121") ;; Used for labels (home items)
|
(def text-light-gray "#212121") ;; Used for labels (home items)
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
(ns status-im.ui.components.styles
|
(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
|
;; TODO(oskarth): Make a palette of all these colors
|
||||||
|
|
||||||
|
@ -98,8 +99,16 @@
|
||||||
:height 24})
|
:height 24})
|
||||||
|
|
||||||
(def icon-add
|
(def icon-add
|
||||||
{:width 14
|
{:width 14
|
||||||
:height 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
|
(def icon-ok
|
||||||
{:width 18
|
{:width 18
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
(ns status-im.ui.components.toolbar.actions
|
(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]
|
(defn add [handler]
|
||||||
{:icon :icons/add
|
{:icon :icons/add
|
||||||
:handler handler})
|
:icon-opts styles/icon-add
|
||||||
|
:handler handler})
|
||||||
|
|
||||||
(defn opts [options]
|
(defn opts [options]
|
||||||
{:icon :icons/options
|
{:icon :icons/options
|
||||||
|
|
Loading…
Reference in New Issue