term.setTextColor
From ComputerCraft Wiki
Revision as of 15:20, 17 November 2012 by 67.189.72.22 (Talk)
| changes the color of your font (For common use add the decimal code of the color) | |
| Syntax | term.setTextColor(color code) |
| Returns | None |
| Part of | ComputerCraft |
| API | term |
Examples
| Makes the words Hello World! green. | |
| Code |
term.setTextColor(colors.green) |