Posted 29 July 2013 - 12:41 PM
You prefer old palette or maybe new one? Here is comparasion:
(Old colors set on the left)
I personally like old one - new colors seem to be "washed out" :(/>
Code to generate palette:
(Old colors set on the left)
I personally like old one - new colors seem to be "washed out" :(/>
Code to generate palette:
Spoiler
term.setBackgroundColor(colors.black)
term.setTextColor(colors.white)
term.clear()
for i = 0, 15 do
term.setCursorPos(1, i+1)
term.setBackgroundColor(2^i)
for j = 0, 15 do
term.setTextColor(2^j)
write(string.format("%x", j))
end
end