AtomikColor

actual fun AtomikColor(hex: Long)
actual fun AtomikColor(    r: Int,     g: Int,     b: Int,     a: Float?)
expect fun AtomikColor(hex: Long)

Parameters

hex
  • The Hex Value of the color (#RRGGBBAA)


expect fun AtomikColor(    r: Int,     g: Int,     b: Int,     a: Float? = null)

Parameters

r
  • Red value (0-255)

g
  • Green Value (0-255)

b
  • Blue Value (0-255)

a
  • Alpha value (0-1) (defaults to 1)

actual fun AtomikColor(hex: Long)
actual fun AtomikColor(    r: Int,     g: Int,     b: Int,     a: Float?)