diff --git a/apps/wallet-mobile/src/features/Transactions/useCases/TxHistory/ActionsBanner.tsx b/apps/wallet-mobile/src/features/Transactions/useCases/TxHistory/ActionsBanner.tsx
index b4cbd5ea08..b4a4913773 100644
--- a/apps/wallet-mobile/src/features/Transactions/useCases/TxHistory/ActionsBanner.tsx
+++ b/apps/wallet-mobile/src/features/Transactions/useCases/TxHistory/ActionsBanner.tsx
@@ -118,7 +118,7 @@ export const ActionsBanner = ({disabled = false}: {disabled: boolean}) => {
onLongPress={handleOnLongPressReceive}
/>
- {strings.receiveLabel}
+ {strings.receiveLabel}
{!meta.isReadOnly && (
@@ -132,7 +132,7 @@ export const ActionsBanner = ({disabled = false}: {disabled: boolean}) => {
disabled={disabled}
/>
- {strings.sendLabel}
+ {strings.sendLabel}
@@ -144,7 +144,7 @@ export const ActionsBanner = ({disabled = false}: {disabled: boolean}) => {
disabled={disabled}
/>
- {strings.swapLabel}
+ {strings.swapLabel}
@@ -156,7 +156,7 @@ export const ActionsBanner = ({disabled = false}: {disabled: boolean}) => {
disabled={disabled}
/>
- {strings.exchange}
+ {strings.exchange}
>
)}
@@ -180,7 +180,10 @@ const useStyles = () => {
actionLabel: {
...atoms.pt_sm,
...atoms.body_3_sm_medium,
- color: color.gray_max,
+ color: color.text_gray_medium,
+ },
+ disabledLabel: {
+ color: color.text_gray_low,
},
})