Color

object Color

Properties

Link copied to clipboard
const val BLACK: Int
Link copied to clipboard
const val BLUE: Int
Link copied to clipboard
const val CYAN: Int
Link copied to clipboard
const val GREEN: Int
Link copied to clipboard
const val MAGENTA: Int
Link copied to clipboard
const val RED: Int
Link copied to clipboard
const val TRANSPARENT: Int
Link copied to clipboard
const val WHITE: Int
Link copied to clipboard
const val YELLOW: Int

Functions

Link copied to clipboard
fun getA(color: Int): Int
Link copied to clipboard
fun getB(color: Int): Int
Link copied to clipboard
fun getG(color: Int): Int
Link copied to clipboard
fun getR(color: Int): Int
Link copied to clipboard
fun makeARGB(a: Int, r: Int, g: Int, b: Int): Int
Link copied to clipboard
fun makeLerp(c1: Int, c2: Int, weight: Float): Int
Link copied to clipboard
fun makeRGB(r: Int, g: Int, b: Int): Int
Link copied to clipboard
fun withA(color: Int, a: Int): Int
Link copied to clipboard
fun withB(color: Int, b: Int): Int
Link copied to clipboard
fun withG(color: Int, g: Int): Int
Link copied to clipboard
fun withR(color: Int, r: Int): Int