@@ -13,13 +13,13 @@ import androidx.compose.ui.platform.LocalContext
1313private val DarkColorScheme = darkColorScheme(
1414 primary = Purple80 ,
1515 secondary = PurpleGrey80 ,
16- tertiary = Pink80
16+ tertiary = Pink80 ,
1717)
1818
1919private val LightColorScheme = lightColorScheme(
2020 primary = Purple40 ,
2121 secondary = PurpleGrey40 ,
22- tertiary = Pink40
22+ tertiary = Pink40 ,
2323
2424 /* Other default colors to override
2525 background = Color(0xFFFFFBFE),
@@ -29,15 +29,15 @@ private val LightColorScheme = lightColorScheme(
2929 onTertiary = Color.White,
3030 onBackground = Color(0xFF1C1B1F),
3131 onSurface = Color(0xFF1C1B1F),
32- */
32+ */
3333)
3434
3535@Composable
3636fun NDGLTheme (
3737 darkTheme : Boolean = isSystemInDarkTheme(),
3838 // Dynamic color is available on Android 12+
3939 dynamicColor : Boolean = true,
40- content : @Composable () -> Unit
40+ content : @Composable () -> Unit ,
4141) {
4242 val colorScheme = when {
4343 dynamicColor && Build .VERSION .SDK_INT >= Build .VERSION_CODES .S -> {
@@ -52,6 +52,6 @@ fun NDGLTheme(
5252 MaterialTheme (
5353 colorScheme = colorScheme,
5454 typography = Typography ,
55- content = content
55+ content = content,
5656 )
5757}
0 commit comments