Difference between revisions of "Term.setBackgroundColor"
From ComputerCraft Wiki
m (Moved to CAT:APIFunctions) |
|||
Line 13: | Line 13: | ||
}} | }} | ||
}} | }} | ||
+ | |||
+ | [[Category:API_Functions]] |
Revision as of 18:41, 28 November 2012
Function term.setBackgroundColor | |
Changes the background color of text subsequently written to the screen. For ease of use, it is best to use the color codes provided in the colors API. | |
Syntax | term.setBackgroundColor(color code) |
Returns | None |
Part of | ComputerCraft |
API | term |
Examples
Example | |
Makes the background of the monitor grey | |
Code |
term.setBackgroundColor(colors.gray) |