Turn On Background Color
Specifies the background color of all future text written in the terminal bg_on
accepts numeric values (RGB or 8-bit color code), hexadecimal characters, or the name of the color. Not all terminals support each possible color.
bg_on(...)
... |
character or numeric value |
Background color is turned off with bg_off
.
NULL
# Different methods of specifying yellow bg_on("yellow") bg_on("#FFFF00") bg_on(11) bg_on(255, 255, 0) # Turn off color bg_off()
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.