Skip to content

Commit 17da4aa

Browse files
committed
style: USD Reserves to USDF; update text coloring in wallet
Signed-off-by: Brandon McAnsh <git@bmcreations.dev>
1 parent 7e18ee0 commit 17da4aa

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

apps/flipcash/core/src/main/res/values/strings.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@
367367
<string name="label_blendModeColorDodge">Color Dodge</string>
368368
<string name="label_blendModePlusLighter">Plus Lighter</string>
369369

370-
<string name="title_cashReserves">USD Reserves</string>
370+
<string name="title_cashReserves">USDF</string>
371371
<string name="action_buyMore">Buy More</string>
372372

373373
<string name="title_amountToBuy">Amount to Buy</string>
@@ -399,7 +399,7 @@
399399
<string name="label_marketCapYear">this year</string>
400400

401401
<string name="prompt_title_selectPurchaseMethod">Select Purchase Method</string>
402-
<string name="action_useCashReservesWithBalance">USD Reserves (%1$s)</string>
402+
<string name="action_useCashReservesWithBalance">USDF (%1$s)</string>
403403

404404
<string name="error_title_buySellFailed">Something Went Wrong</string>
405405
<string name="error_description_buySellFailed">Please try again</string>

apps/flipcash/features/balance/src/main/kotlin/com/flipcash/app/balance/internal/BalanceScreenContent.kt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,16 +138,15 @@ private fun BalanceScreenContent(
138138
Text(
139139
text = stringResource(R.string.title_cashReserves),
140140
style = CodeTheme.typography.screenTitle,
141-
color = CodeTheme.colors.textMain,
141+
color = CodeTheme.colors.textSecondary,
142142
)
143143

144144
Icon(
145145
modifier = Modifier
146-
.padding(top = CodeTheme.dimens.grid.x1)
147-
.padding(start = CodeTheme.dimens.grid.x1),
146+
.padding(start = CodeTheme.dimens.grid.x2),
148147
painter = painterResource(id = R.drawable.ic_chevron_right),
149148
contentDescription = null,
150-
tint = CodeTheme.colors.textMain,
149+
tint = CodeTheme.colors.textSecondary,
151150
)
152151

153152
Spacer(Modifier.weight(1f))

0 commit comments

Comments
 (0)