forked from hkc/cc-stuff
22 lines
630 B
Lua
22 lines
630 B
Lua
|
local customColors = {
|
||
|
[colors.white] = 0xEFEFEF,
|
||
|
[colors.orange] = 0xD99F82,
|
||
|
[colors.magenta] = 0x464A73,
|
||
|
[colors.lightBlue] = 0xA1D5E6,
|
||
|
[colors.yellow] = 0xE6CCA1,
|
||
|
[colors.lime] = 0x86BF8F,
|
||
|
[colors.pink] = 0xC98F8F,
|
||
|
[colors.gray] = 0x515151,
|
||
|
[colors.lightGray] = 0xA3A3A3,
|
||
|
[colors.cyan] = 0xC2F2F2,
|
||
|
[colors.blue] = 0x6699CC,
|
||
|
[colors.brown] = 0x735F4B,
|
||
|
[colors.green] = 0x6DA18A,
|
||
|
[colors.red] = 0xBD555F,
|
||
|
[colors.black] = 0x131313
|
||
|
}
|
||
|
|
||
|
for id, color in pairs(customColors) do
|
||
|
term.setPaletteColor(id, color)
|
||
|
end
|