Skip to content

Commit

Permalink
Remotes fix beta color (#977)
Browse files Browse the repository at this point in the history
**Background**

Current infrared card has grey color of "beta text"

**Changes**

- Change color of beta text on infrared color

**Test plan**

- Open tools tab
- See green text on beta text card
  • Loading branch information
makeevrserg authored Oct 28, 2024
1 parent 18a6549 commit e0a2a5b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ Attention: don't forget to add the flag for F-Droid before release
- [FIX] Remove share from remote controls
- [FIX] Remove "RPC" argument from screen streaming request
- [FIX] Fix remote-controls duplication ir files
- [FIX] Fix infrared remotes card beta text color
- [CI] Fix merge-queue files diff
- [CI] Add https://github.com/LionZXY/detekt-decompose-rule
- [CI] Enabling detekt module for android and kmp modules
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,11 @@ private fun RemoteControls(
Text(
text = stringResource(R.string.card_beta),
style = LocalTypography.current.subtitleR12,
color = LocalPallet.current.text30,
color = LocalPalletV2.current.action.fwUpdate.background.primary.default,
modifier = Modifier
.border(
1.dp,
LocalPalletV2.current.action.neutral.border.secondary.default,
LocalPalletV2.current.action.fwUpdate.background.primary.default,
RoundedCornerShape(30.dp)
)
.clip(RoundedCornerShape(30.dp))
Expand Down

0 comments on commit e0a2a5b

Please sign in to comment.