term.setTextColor

From ComputerCraft Wiki
Revision as of 22:52, 30 October 2012 by 78.20.42.205 (Talk) (Created page with "{{lowercase}} {{Function |name=Term.setTextColor |returns=None |api=term |addon=ComputerCraft |desc=changes the color of your font (here is a full list of [http://computercraf...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


Grid Redstone.png  Function Term.setTextColor
changes the color of your font (here is a full list of colors. For common use add the decimal code of the color)
Syntax Term.setTextColor()
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!")