All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.aay.compose.theme.Theme.kt Maven / Gradle / Ivy

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