Home | History | Annotate | Download | only in Unix

Lines Matching full:bold

281 #define COLOR(FGBG, CODE, BOLD) "\033[0;" BOLD FGBG CODE "m"
283 #define ALLCOLORS(FGBG,BOLD) {\
284 COLOR(FGBG, "0", BOLD),\
285 COLOR(FGBG, "1", BOLD),\
286 COLOR(FGBG, "2", BOLD),\
287 COLOR(FGBG, "3", BOLD),\
288 COLOR(FGBG, "4", BOLD),\
289 COLOR(FGBG, "5", BOLD),\
290 COLOR(FGBG, "6", BOLD),\
291 COLOR(FGBG, "7", BOLD)\
299 const char *Process::OutputColor(char code, bool bold, bool bg) {
300 return colorcodes[bg?1:0][bold?1:0][code&7];