to change the color of the text :
ink color_text, color_back_text
example :
set text opaque
ink rgb(255,255,0),rgb(0,0,255)
print "Hello World"
wait key
to change the backdrop color :
first, you must use backdrop on
the, color backdrop COLOR
example :
backdrop on
color backdrop rgb(128,128,128)
wait key
then, you can mixe everything, and .... ....
sync on
sync rate 5
backdrop on
color backdrop rgb(128,128,128)
set text opaque
do
set cursor 100,100
rem choosing a random color
ink rgb(rnd(255),rnd(255),rnd(255)),rgb(rnd(255),rnd(255),rnd(255))
print "Hello World"
sync
loop
here you are ^^
The sleeper must awaken !