Skip to content

Commit 6175fa8

Browse files
Force light mode
1 parent 4163f44 commit 6175fa8

File tree

1 file changed

+8
-5
lines changed
  • app/src/main/java/com/hicham/wcstoreapp/ui/theme

1 file changed

+8
-5
lines changed

app/src/main/java/com/hicham/wcstoreapp/ui/theme/Theme.kt

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,14 @@ private val LightColorPalette = lightColors(
2929

3030
@Composable
3131
fun WCStoreAppTheme(darkTheme: Boolean = isSystemInDarkTheme(), content: @Composable() () -> Unit) {
32-
val colors = if (darkTheme) {
33-
DarkColorPalette
34-
} else {
35-
LightColorPalette
36-
}
32+
// TODO fix dark theme
33+
// val colors = if (darkTheme) {
34+
// DarkColorPalette
35+
// } else {
36+
// LightColorPalette
37+
// }
38+
39+
val colors = LightColorPalette
3740

3841
MaterialTheme(
3942
colors = colors,

0 commit comments

Comments
 (0)