COLOR_DEFAULT
int bg = COLOR_DEFAULT;
f = COLOR_DEFAULT;
b = COLOR_DEFAULT;
int fg = COLOR_DEFAULT;
SP_PARM->_default_fg = isDefaultColor(fg) ? COLOR_DEFAULT : fg;
SP_PARM->_default_bg = isDefaultColor(bg) ? COLOR_DEFAULT : bg;
sp->_default_fg = COLOR_DEFAULT;
sp->_default_bg = COLOR_DEFAULT;
sp->_default_fg = ((fg >= 0 && fg < MaxColors) ? fg : COLOR_DEFAULT);
sp->_default_bg = ((bg >= 0 && bg < MaxColors) ? bg : COLOR_DEFAULT);
sp->_default_fg = isDefaultColor(fg) ? COLOR_DEFAULT : fg;
sp->_default_bg = isDefaultColor(bg) ? COLOR_DEFAULT : bg;
int fg = COLOR_DEFAULT;
int bg = COLOR_DEFAULT;