Posted 10 August 2015 - 04:56 PM

You can't as far as I've heard, as its hardcoded into the background program.
To be sure, you could look at the code, but I'm fairly certain that you'd have to make a modified version of it to change the colors.
-- Setup the main menu
local menuMainTextColor, menuMainBgColor, menuOtherTextColor, menuOtherBgColor
if parentTerm.isColor() then
menuMainTextColor, menuMainBgColor = colors.yellow, colors.black
menuOtherTextColor, menuOtherBgColor = colors.black, colors.gray
else
menuMainTextColor, menuMainBgColor = colors.white, colors.black
menuOtherTextColor, menuOtherBgColor = colors.black, colors.white
end
But I 've seen it in OneOS …
local oldSet = term.setForegroundColor
function term.setForegroundColor(color)
if color == colors.yellow and select(2, pcall(error, "", 3)):match("multishell") then
color == colors.red
end
oldSet(color)
end