commonMain.com.aay.compose.theme.Theme.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chart Show documentation
Show all versions of chart Show documentation
Multiplatform library for desktop and android
The newest version!
package com.netguru.multiplatform.charts.theme
import androidx.compose.runtime.Composable
import androidx.compose.runtime.staticCompositionLocalOf
import androidx.compose.ui.graphics.Color
val LocalChartColors = staticCompositionLocalOf {
ChartColors(
primary = Color.Unspecified,
surface = Color.Unspecified,
grid = Color.Unspecified,
emptyGasBottle = Color.Unspecified,
fullGasBottle = Color.Unspecified,
overlayLine = Color.Unspecified,
)
}
internal object ChartTheme {
val colors: ChartColors
@Composable
get() = LocalChartColors.current
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy