public override GraphicsColor[] GetPaletteColors(bool textMode)
        {
            GraphicsColor[] colors = null;

            if (textMode)
            {
                colors = this.GetPaletteTextColors();
            }
            else
            {
                colors = new GraphicsColor[]
                {
                    new GraphicsColor(0x00, 0x00, 0x00),
                    this.whiteColor,
                };
            }

            return(colors);
        }
 public GraphicsRendererDriverHercules(GraphicsColor whiteColor)
 {
     this.whiteColor = whiteColor;
     this.CreateRenderBuffer(640, 336);
 }