Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

Commit

Permalink
For #28133 - Fix Pocket story category color mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
MozillaNoah authored and mergify[bot] committed Dec 8, 2022
1 parent cc666c8 commit 21c270b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -479,10 +479,10 @@ data class PocketStoriesCategoryColors(
*/
@Composable
fun buildColors(
selectedBackgroundColor: Color = FirefoxTheme.colors.textActionPrimary,
unselectedBackgroundColor: Color = FirefoxTheme.colors.textActionTertiary,
selectedTextColor: Color = FirefoxTheme.colors.actionPrimary,
unselectedTextColor: Color = FirefoxTheme.colors.actionTertiary,
selectedBackgroundColor: Color = FirefoxTheme.colors.actionPrimary,
unselectedBackgroundColor: Color = FirefoxTheme.colors.actionTertiary,
selectedTextColor: Color = FirefoxTheme.colors.textActionPrimary,
unselectedTextColor: Color = FirefoxTheme.colors.textActionTertiary,
) = PocketStoriesCategoryColors(
selectedBackgroundColor = selectedBackgroundColor,
unselectedBackgroundColor = unselectedBackgroundColor,
Expand Down

0 comments on commit 21c270b

Please sign in to comment.