Posted 21 January 2013 - 07:12 AM
I've seen various colors used in screensavers and such and I was wondering how to do that myself.. any links or help is appreciated. thanks
Clicklinkthingy
term.setBackgroundcolour() works the same
term.setBackroundColor(colors.blue) --this makes the background of the computer blue.you could also use other colors[\CODE]
You could also be sent it with the Text.just change backroung to TeXt.
Excuse my righting I'm on a tablet .... :P/>
term.setTextColour(colours.red)
OR
term.setTextColor(colors.red)
But you can replace red with any colour. Then print/write something and it will be in that colour. Also,
term.setBackgroundColour(colours.red)
OR
term.setBackgroundColor(colors.red)
sets the background, but you have to clear the screen with term.clear() or write/print something in order for it to activate.