color differences

Blitz3D Forums/Blitz3D Beginners Area/color differences

How can i create 2 rectangles, and text, but they're different color? I know the rect and text commands but i can't figure out how to make them different color. I want to have the 2 rectangles black and the text blue. Any help is appreciated

Color R,G,B?

doesnt that just work for all rects/text/etc. as a global, applying to all, not invdividually?

Yes, but it doesn't change the color of rectangles that are drawn allready:
repeat
 color 0, 255, 0
 rect 0,0,64,64
 color 255, 0, 0
 rect 64,0,64,64
 color 255, 255, 255
 text 0, 0, "hello world"
 flip
until keyhit(1)


ooh. thanks!

now, is there a way to INCREASE the size of the text? It's kinda small on my running res.

Setfont()?

perfect, thanks

A little off topic, but, with the input command, to change the set text a different color from the text you type in:

Color 255,0,0
Write "Type in your name "
Color 0,0,255
name$ = Input("")