commonMain.com.materialkolor.LocalDynamicMaterialThemeSeed.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of material-kolor Show documentation
Show all versions of material-kolor Show documentation
A Compose multiplatform library for generating dynamic Material3 color schemes from a seed color.
package com.materialkolor
import androidx.compose.runtime.CompositionLocal
import androidx.compose.runtime.ProvidableCompositionLocal
import androidx.compose.runtime.staticCompositionLocalOf
import androidx.compose.ui.graphics.Color
/**
* LocalDynamicMaterialThemeSeed is a [CompositionLocal] that provides the seed color for the
* dynamic material theme.
*/
public val LocalDynamicMaterialThemeSeed: ProvidableCompositionLocal =
staticCompositionLocalOf { error("DynamicMaterialTheme not initialized") }