in ui-components/src/commonMain/kotlin/org/jetbrains/kotlinconf/ui/theme/KotlinConfTheme.kt [64:78]
fun KotlinConfTheme(
darkTheme: Boolean = isSystemInDarkTheme(),
rippleEnabled: Boolean = true,
content: @Composable () -> Unit,
) {
CompositionLocalProvider(
LocalColors provides if (darkTheme) KotlinConfDarkColors else KotlinConfLightColors,
LocalShapes provides KotlinConfShapes,
LocalTypography provides KotlinConfTypography,
LocalIndication provides if (rippleEnabled) rememberRippleIndication() else NoIndication,
LocalAppTheme provides darkTheme,
) {
content()
}
}