ifg               182 lib/tty/color-ncurses.c         int ifg, ibg, attr;
ifg               184 lib/tty/color-ncurses.c         ifg = mc_color_pair->fg;
ifg               192 lib/tty/color-ncurses.c             if (ifg >= 8 && ifg < 16)
ifg               194 lib/tty/color-ncurses.c                 ifg &= 0x07;
ifg               206 lib/tty/color-ncurses.c         if ((ifg & FLAG_TRUECOLOR) != 0)
ifg               208 lib/tty/color-ncurses.c             ifg &= ~FLAG_TRUECOLOR;
ifg               209 lib/tty/color-ncurses.c             if (ifg != 0 && ifg <= overlay_colors)
ifg               210 lib/tty/color-ncurses.c                 ifg += (1 << 16);
ifg               222 lib/tty/color-ncurses.c         init_extended_pair (mc_color_pair->pair_index, ifg, ibg);
ifg               224 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;