-
Notifications
You must be signed in to change notification settings - Fork 73
Sdl ColorTable
Tangent 128 edited this page Mar 28, 2015
·
3 revisions
Color definition as a table.
local c = {
r, g, b
}
- r, (int) the red value
- g, (int) the green value
- b, (int) the blue value
local c = {
r = 60,
g = 40,
b = 100
}