Color

expect fun Color(red: Float, green: Float, blue: Float, alpha: Float = 1.0f): Color(source)
expect fun Color(color: Long): Color(source)
expect fun Color(@IntRange(from = 0, to = 255) red: Int, @IntRange(from = 0, to = 255) green: Int, @IntRange(from = 0, to = 255) blue: Int, @IntRange(from = 0, to = 255) alpha: Int = 255): Color(source)


expect fun Color(@ColorInt color: Int): Color(source)

ARGB

actual fun Color(red: Float, green: Float, blue: Float, alpha: Float): Color(source)
actual fun Color(@ColorInt color: Int): Color(source)
actual fun Color(color: Long): Color(source)
actual fun Color(@IntRange(from = 0, to = 255) red: Int, @IntRange(from = 0, to = 255) green: Int, @IntRange(from = 0, to = 255) blue: Int, @IntRange(from = 0, to = 255) alpha: Int): Color(source)
actual fun Color(red: Float, green: Float, blue: Float, alpha: Float): Color(source)
actual fun Color(@ColorInt color: Int): Color(source)
actual fun Color(color: Long): Color(source)
actual fun Color(@IntRange(from = 0, to = 255) red: Int, @IntRange(from = 0, to = 255) green: Int, @IntRange(from = 0, to = 255) blue: Int, @IntRange(from = 0, to = 255) alpha: Int): Color(source)