term.setTextColor

From ComputerCraft Wiki
Revision as of 22:57, 30 October 2012 by 78.20.42.205 (Talk)

Jump to: navigation, search


Grid Redstone.png  Function Term.setText
changes the color of your font (For common use add the decimal code of the color)
Syntax Term.setText(color code)
Returns None
Part of ComputerCraft
API term

Examples

Grid paper.png  Example
Makes the words hello world! grey
Code
Term.SetTextcolor(128)
print("Hello World!")