Doc: Ink
Ink - set the drawing color for text and primitives
Syntax
Ink color
- color - color to use when drawing text and primitives
Explanation
Ink sets the color for drawing text and primitives.
Examples
Change the Ink Color
The example code below changes the ink color to bright green before drawing a circle.
SetFPS 60
Do
Cls 0
Ink $00FF00
Circle 100, 100, 20, True
Sync
Loop
Related Pages
Reference
Text Commands that Use Ink
Primitive Commands that Use Ink
| Categories: Color : Functions : Graphics |