Skip to content
Tangent 128 edited this page Mar 28, 2015 · 3 revisions

Color (table)

Color definition as a table.

Table

SYNOPSIS

local c = {
    r, g, b
}

FIELDS

  • r, (int) the red value
  • g, (int) the green value
  • b, (int) the blue value

EXAMPLE

local c = {
r = 60,
g = 40,
b = 100
}
Clone this wiki locally