Turn On Foreground Color
Specifies the color of all future text written in the terminal fg_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.
fg_on(...)
... |
character or numeric value |
Foreground color is turned off with fg_off
.
NULL
# Different methods of specifying red fg_on("red") fg_on("#FF0000") fg_on(9) fg_on(255, 0, 0) # Turn off color fg_off()
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.