style(MUSD-629): green check icons and muted background for stablecoin feature tags#28656
Merged
Conversation
Contributor
|
CLA Signature Action: All authors have signed the CLA. You may need to manually re-run the blocking PR check if it doesn't pass in a few minutes. |
Matt561
approved these changes
Apr 10, 2026
shane-t
approved these changes
Apr 10, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
The "Convert your stablecoins" card on the Money screen had two visual issues compared to the design:
IconColor.IconAlternative(grey) instead of the success-green tone that matches the "3% annualized bonus" highlight in the description.TagSeverity.Neutral, which resolves totheme.colors.background.alternative. In dark mode this came out almost indistinguishable from the surrounding card surface.The fix is scoped to the local usage of
TagBaseinsideMoneyConvertStablecoinsso it cannot regress any other consumer ofTagBase:IconColor.SuccessDefault, matching the success-green token already used by the description's bonus highlight.styleprop to a 4% white tint in dark mode (rgba(255, 255, 255, 0.04)) and a symmetric 4% black tint in light mode (rgba(0, 0, 0, 0.04)).TagBasemerges the per-instancestyleprop after the severity-derived background, so neutral tags elsewhere in the app are unaffected. OnlybackgroundColoris touched (notopacity), so the icons and text inside the tag stay fully opaque.useTheme()readsthemeAppearanceso the override stays correct in both light and dark themes without hardcoding a single value.Changelog
CHANGELOG entry: Updated the Convert Stablecoins card so the feature tag check icons render in green and the tag background uses a subtle muted tint that matches the design.
Related issues
Fixes: MUSD-629
Manual testing steps
Screenshots/Recordings
Before
After
Pre-merge author checklist
Pre-merge reviewer checklist
Note
Low Risk
Low risk visual-only change scoped to
MoneyConvertStablecoinsfeature tags, adjusting icon and background colors without altering business logic or data flow.Overview
Updates the Money screen’s
MoneyConvertStablecoinsfeature tags to better match design in both themes.The checkmark icon color is changed to
IconColor.SuccessDefault, and the tag background is overridden with a subtle theme-aware tint viauseTheme()(light:rgba(0, 0, 0, 0.04), dark:rgba(255, 255, 255, 0.04)).Reviewed by Cursor Bugbot for commit 61a7b9f. Bugbot is set up for automated code reviews on this repo. Configure here.