Color

data class Color(val red: Int, val green: Int, val blue: Int, val alpha: Int = 255)

Constructors

Link copied to clipboard
fun Color(red: Int, green: Int, blue: Int, alpha: Int = 255)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
val alpha: Int = 255
Link copied to clipboard
val blue: Int
Link copied to clipboard
val green: Int
Link copied to clipboard
val red: Int