Difference between revisions of "Term.setTextColor"
From ComputerCraft Wiki
Line 1: | Line 1: | ||
{{lowercase}} | {{lowercase}} | ||
{{Function | {{Function | ||
− | |name=Term. | + | |name=Term.setTextColor |
|args= [http://computercraft.info/wiki/index.php?title=Colors#Colors color] code | |args= [http://computercraft.info/wiki/index.php?title=Colors#Colors color] code | ||
|returns=None | |returns=None |
Revision as of 22:59, 30 October 2012
Function Term.setTextColor | |
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
Example | |
Makes the words hello world! grey | |
Code |
Term.SetTextcolor(128) |