21 lines
567 B
Kotlin
21 lines
567 B
Kotlin
|
package eu.kanade.presentation.theme
|
||
|
|
||
|
import androidx.compose.material3.MaterialTheme
|
||
|
import androidx.compose.runtime.Composable
|
||
|
import androidx.compose.ui.platform.LocalContext
|
||
|
import com.google.android.material.composethemeadapter3.createMdc3Theme
|
||
|
|
||
|
@Composable
|
||
|
fun TachiyomiTheme(content: @Composable () -> Unit) {
|
||
|
val context = LocalContext.current
|
||
|
var (colorScheme, typography) = createMdc3Theme(
|
||
|
context = context
|
||
|
)
|
||
|
|
||
|
MaterialTheme(
|
||
|
colorScheme = colorScheme!!,
|
||
|
typography = typography!!,
|
||
|
content = content
|
||
|
)
|
||
|
}
|