ibg 182 lib/tty/color-ncurses.c int ifg, ibg, attr; ibg 185 lib/tty/color-ncurses.c ibg = mc_color_pair->bg; ibg 198 lib/tty/color-ncurses.c if (ibg >= 8 && ibg < 16) ibg 200 lib/tty/color-ncurses.c ibg &= 0x07; ibg 213 lib/tty/color-ncurses.c if ((ibg & FLAG_TRUECOLOR) != 0) ibg 215 lib/tty/color-ncurses.c ibg &= ~FLAG_TRUECOLOR; ibg 216 lib/tty/color-ncurses.c if (ibg != 0 && ibg <= overlay_colors) ibg 217 lib/tty/color-ncurses.c ibg += (1 << 16); ibg 222 lib/tty/color-ncurses.c init_extended_pair (mc_color_pair->pair_index, ifg, ibg); ibg 224 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;