commonMain.SemanticColorToColor.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of semanticui Show documentation
Show all versions of semanticui Show documentation
"Smemantic UI on top of kotlinx/html"
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