Mono.Terminal.Application.MakeColor C# (CSharp) Method

MakeColor() public static method

Creates a new Curses color to be used by Gui.cs apps
public static MakeColor ( short f, short b ) : int
f short
b short
return int
        public static int MakeColor(short f, short b)
        {
            Curses.init_pair (++last_color_pair, f, b);
            return Curses.ColorPair (last_color_pair);
        }