ifg               143 lib/tty/color-ncurses.c     int ifg, ibg, attr;
ifg               145 lib/tty/color-ncurses.c     ifg = mc_color_pair->fg;
ifg               153 lib/tty/color-ncurses.c         if (ifg >= 8 && ifg < 16)
ifg               155 lib/tty/color-ncurses.c             ifg &= 0x07;
ifg               167 lib/tty/color-ncurses.c     if ((ifg & FLAG_TRUECOLOR) != 0)
ifg               169 lib/tty/color-ncurses.c         ifg &= ~FLAG_TRUECOLOR;
ifg               170 lib/tty/color-ncurses.c         if (ifg != 0 && ifg <= overlay_colors)
ifg               171 lib/tty/color-ncurses.c             ifg += (1 << 16);
ifg               183 lib/tty/color-ncurses.c     init_extended_pair (mc_color_pair->pair_index, ifg, ibg);
ifg               185 lib/tty/color-ncurses.c     init_pair (mc_color_pair->pair_index, ifg, ibg);
ifg               158 lib/tty/color.c     int ifg, ibg, attr;
ifg               161 lib/tty/color.c     ifg = tty_color_get_index_by_name (is_base ? tty_color_defaults.fg : color->fg);
ifg               167 lib/tty/color.c     color_pair = g_strdup_printf ("%d.%d.%d", ifg, ibg, attr);
ifg               182 lib/tty/color.c         if ((ifg & FLAG_TRUECOLOR) == 0)
ifg               183 lib/tty/color.c             ifg = convert_256color_to_truecolor (ifg);
ifg               197 lib/tty/color.c     mc_color_pair->fg = ifg;