Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
fix: adjust category text color to adapt to dark mode theme (#3474)
Browse files Browse the repository at this point in the history
  • Loading branch information
akashs056 authored Sep 5, 2024
1 parent 0ff49ef commit 1b24a2f
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ import androidx.compose.ui.res.stringResource
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import com.ivy.design.l0_system.UI
import com.ivy.design.l0_system.style
import com.ivy.design.l1_buildingBlocks.DividerW
import com.ivy.design.l1_buildingBlocks.IvyText
import com.ivy.design.l1_buildingBlocks.SpacerHor
Expand Down Expand Up @@ -312,7 +313,12 @@ private fun Section(

SpacerHor(width = 16.dp)

IvyText(text = title, typo = UI.typo.b1)
IvyText(
text = title,
typo = UI.typo.b1.style(
color = UI.colors.pureInverse,
)
)

SpacerHor(width = 16.dp)

Expand Down

0 comments on commit 1b24a2f

Please sign in to comment.