For #28133 - Fix Pocket story category color mismatch

This commit is contained in:
Noah Bond 2022-12-08 11:15:15 -08:00 committed by mergify[bot]
parent cc666c8887
commit 21c270bb87

View File

@ -479,10 +479,10 @@ data class PocketStoriesCategoryColors(
*/ */
@Composable @Composable
fun buildColors( fun buildColors(
selectedBackgroundColor: Color = FirefoxTheme.colors.textActionPrimary, selectedBackgroundColor: Color = FirefoxTheme.colors.actionPrimary,
unselectedBackgroundColor: Color = FirefoxTheme.colors.textActionTertiary, unselectedBackgroundColor: Color = FirefoxTheme.colors.actionTertiary,
selectedTextColor: Color = FirefoxTheme.colors.actionPrimary, selectedTextColor: Color = FirefoxTheme.colors.textActionPrimary,
unselectedTextColor: Color = FirefoxTheme.colors.actionTertiary, unselectedTextColor: Color = FirefoxTheme.colors.textActionTertiary,
) = PocketStoriesCategoryColors( ) = PocketStoriesCategoryColors(
selectedBackgroundColor = selectedBackgroundColor, selectedBackgroundColor = selectedBackgroundColor,
unselectedBackgroundColor = unselectedBackgroundColor, unselectedBackgroundColor = unselectedBackgroundColor,