AtomikColor

actual class AtomikColor
expect class AtomikColor

A common implementation of a Color

This contains platform specific implementations in the actual versions. Can be created from either a hex Long or an RGBA value

actual class AtomikColor

Constructors

Link copied to clipboard
actual fun AtomikColor(hex: Long)
expect fun AtomikColor(hex: Long)
actual fun AtomikColor(hex: Long)
Link copied to clipboard
actual fun AtomikColor(    r: Int,     g: Int,     b: Int,     a: Float?)
expect fun AtomikColor(    r: Int,     g: Int,     b: Int,     a: Float? = null)
actual fun AtomikColor(    r: Int,     g: Int,     b: Int,     a: Float?)

Properties

Link copied to clipboard
actual val a: Float
expect val a: Float

The alpha Value (0-1) (Defaults to 1)

actual val a: Float
Link copied to clipboard
actual val b: Int
expect val b: Int

The red Value (0-255)

actual val b: Int
Link copied to clipboard
val composeColor: Color
Link copied to clipboard
actual val g: Int
expect val g: Int

The red Value (0-255)

actual val g: Int
Link copied to clipboard
actual val hexString: String
expect val hexString: String

The hex value of the color (#RRGGBBAA)

actual val hexString: String
Link copied to clipboard
actual val r: Int
expect val r: Int

The red Value (0-255)

actual val r: Int
Link copied to clipboard
val uiColor: UIColor
Link copied to clipboard
val viewColor: Int