ibg               143 lib/tty/color-ncurses.c     int ifg, ibg, attr;
ibg               146 lib/tty/color-ncurses.c     ibg = mc_color_pair->bg;
ibg               159 lib/tty/color-ncurses.c         if (ibg >= 8 && ibg < 16)
ibg               161 lib/tty/color-ncurses.c             ibg &= 0x07;
ibg               174 lib/tty/color-ncurses.c     if ((ibg & FLAG_TRUECOLOR) != 0)
ibg               176 lib/tty/color-ncurses.c         ibg &= ~FLAG_TRUECOLOR;
ibg               177 lib/tty/color-ncurses.c         if (ibg != 0 && ibg <= overlay_colors)
ibg               178 lib/tty/color-ncurses.c             ibg += (1 << 16);
ibg               183 lib/tty/color-ncurses.c     init_extended_pair (mc_color_pair->pair_index, ifg, ibg);
ibg               185 lib/tty/color-ncurses.c     init_pair (mc_color_pair->pair_index, ifg, ibg);
ibg               158 lib/tty/color.c     int ifg, ibg, attr;
ibg               163 lib/tty/color.c     ibg = tty_color_get_index_by_name (is_base ? tty_color_defaults.bg : color->bg);
ibg               167 lib/tty/color.c     color_pair = g_strdup_printf ("%d.%d.%d", ifg, ibg, attr);
ibg               185 lib/tty/color.c         if ((ibg & FLAG_TRUECOLOR) == 0)
ibg               186 lib/tty/color.c             ibg = convert_256color_to_truecolor (ibg);
ibg               198 lib/tty/color.c     mc_color_pair->bg = ibg;