@@ -118,7 +118,7 @@ export const ActionsBanner = ({disabled = false}: {disabled: boolean}) => {
118
118
onLongPress = { handleOnLongPressReceive }
119
119
/>
120
120
121
- < Text style = { styles . actionLabel } > { strings . receiveLabel } </ Text >
121
+ < Text style = { [ styles . actionLabel , disabled && styles . disabledLabel ] } > { strings . receiveLabel } </ Text >
122
122
</ View >
123
123
124
124
{ ! meta . isReadOnly && (
@@ -132,7 +132,7 @@ export const ActionsBanner = ({disabled = false}: {disabled: boolean}) => {
132
132
disabled = { disabled }
133
133
/>
134
134
135
- < Text style = { styles . actionLabel } > { strings . sendLabel } </ Text >
135
+ < Text style = { [ styles . actionLabel , disabled && styles . disabledLabel ] } > { strings . sendLabel } </ Text >
136
136
</ View >
137
137
138
138
< View style = { styles . centralized } >
@@ -144,7 +144,7 @@ export const ActionsBanner = ({disabled = false}: {disabled: boolean}) => {
144
144
disabled = { disabled }
145
145
/>
146
146
147
- < Text style = { styles . actionLabel } > { strings . swapLabel } </ Text >
147
+ < Text style = { [ styles . actionLabel , disabled && styles . disabledLabel ] } > { strings . swapLabel } </ Text >
148
148
</ View >
149
149
150
150
< View style = { styles . centralized } >
@@ -156,7 +156,7 @@ export const ActionsBanner = ({disabled = false}: {disabled: boolean}) => {
156
156
disabled = { disabled }
157
157
/>
158
158
159
- < Text style = { styles . actionLabel } > { strings . exchange } </ Text >
159
+ < Text style = { [ styles . actionLabel , disabled && styles . disabledLabel ] } > { strings . exchange } </ Text >
160
160
</ View >
161
161
</ >
162
162
) }
@@ -180,7 +180,10 @@ const useStyles = () => {
180
180
actionLabel : {
181
181
...atoms . pt_sm ,
182
182
...atoms . body_3_sm_medium ,
183
- color : color . gray_max ,
183
+ color : color . text_gray_medium ,
184
+ } ,
185
+ disabledLabel : {
186
+ color : color . text_gray_low ,
184
187
} ,
185
188
} )
186
189
0 commit comments