font and text commands

Blitz3D Forums/Blitz3D Beginners Area/font and text commands

Isn't there a font or text command that changes the color of the text

Yes, there is a command: Color.
Graphics 640,480

Color 255,0,0
Text 10,10, "Red"

Color 0,0,255
Text 10,30, "Blue"

Flip
WaitKey


Thanks :)