Skip to content

Commit

Permalink
Disable dark theme
Browse files Browse the repository at this point in the history
  • Loading branch information
mdrlzy authored and kirillt committed Jun 20, 2023
1 parent 6938b1b commit 90c5996
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ private val LightColorPalette = lightColors(

@Composable
fun ARKRateTheme(darkTheme: Boolean = isSystemInDarkTheme(), content: @Composable () -> Unit) {
val colors = if (darkTheme) {
DarkColorPalette
} else {
LightColorPalette
}
// val colors = if (darkTheme) {
// DarkColorPalette
// } else {
// LightColorPalette
// }

MaterialTheme(
colors = colors,
colors = LightColorPalette,
typography = Typography,
shapes = Shapes,
content = content
Expand Down

0 comments on commit 90c5996

Please sign in to comment.