RgbaColor

data class RgbaColor(val r: Int, val g: Int, val b: Int, val a: Double) : CssColor

RGBA表記(透明度付き)

Constructors

Link copied to clipboard
constructor(r: Int, g: Int, b: Int, a: Double)

Properties

Link copied to clipboard
val a: Double
Link copied to clipboard
val b: Int
Link copied to clipboard
val g: Int
Link copied to clipboard
val r: Int

Functions

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