Thanks very much for the website tip. For the NDataGridView I'm not setting the foreColor. I just dropped an NDataGridView on a new form (test project) and tried to use that scheme with it. (I noticed ColorScheme.Blue has the same issue). Here's what the designer produced:
this.nDataGridView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.nDataGridView1.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(225)))), ((int)(((byte)(225)))), ((int)(((byte)(225)))));
this.nDataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.nDataGridView1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))));
this.nDataGridView1.Location = new System.Drawing.Point(12, 12);
this.nDataGridView1.Name = "nDataGridView1";
this.nDataGridView1.Size = new System.Drawing.Size(260, 226);
this.nDataGridView1.TabIndex = 2;
this.nDataGridView1.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.nDataGridView1_CellClick);
I tried removing the setting of the BackgroundColor and the GridColor and this change didn't help. Perhaps this has been addressed in the current Nevron UI build.