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

commonMain.SemanticColorToColor.kt Maven / Gradle / Ivy

There is a newer version: 0.50.5
Show newest version
package de.peekandpoke.kraft.semanticui

import kotlinx.css.Color

interface SemanticColorToColor {

    data class ColorAndName(
        val semantic: SemanticColor,
        val color: Color,
        val name: String
    )

    val valid: List

    fun get(semantic: SemanticColor): ColorAndName

    operator fun invoke(semantic: SemanticColor): ColorAndName = get(semantic)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy