Lines Matching full:fg
129 ANSI_FG_BLACK = 30, /* fg black */
130 ANSI_FG_RED = 31, /* fg red */
131 ANSI_FG_GREEN = 32, /* fg green */
132 ANSI_FG_YELLOW = 33, /* fg yellow */
133 ANSI_FG_BLUE = 34, /* fg blue */
134 ANSI_FG_MAGENTA = 35, /* fg magenta */
135 ANSI_FG_CYAN = 36, /* fg cyan */
136 ANSI_FG_WHITE = 37, /* fg white */
137 ANSI_FG_DEFAULT = 39, /* fg default (white) */
252 makecolor(char **c, int fg, int bg, Str *v) in makecolor() argument
255 if (fg & 0x80) { in makecolor()
257 fg & ~TCSH_BOLD, (10 + bg) & ~TCSH_BOLD, ANSI_BOLD_OFF); in makecolor()
260 fg & ~TCSH_BOLD, (10 + bg) & ~TCSH_BOLD); in makecolor()
300 int fg, bg; in parseLSCOLORS() local
302 fg = color(*v++); in parseLSCOLORS()
303 if (fg == -1) in parseLSCOLORS()
309 makecolor(&c, fg, bg, &variables[map[i]].color); in parseLSCOLORS()