This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
jesusthekiller's profile picture

Which Colors Do You Like More? Old Or New?

Started by jesusthekiller, 29 July 2013 - 10:41 AM
jesusthekiller #1
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:
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
Lyqyd #2
Posted 29 July 2013 - 01:20 PM
It doesn't really matter.