Added Theme colours so it's on Twitch Brand

This commit is contained in:
Martin Barker
2023-02-24 03:20:39 +00:00
parent a974e41ce3
commit 4d55aaff37
5 changed files with 179 additions and 10 deletions

View File

@@ -95,6 +95,9 @@ internal class Program
notifyIcon.Text = "Twitch Notify";
cms = new ContextMenuStrip();
cms.BackColor = System.Drawing.Color.FromArgb(51, 51, 51);
cms.ForeColor = System.Drawing.Color.FromArgb(145, 70, 255);
cms.ShowImageMargin= false;
cms.Items.Add(new ToolStripMenuItem("Manage Ignores", null, new EventHandler(ManageIgnores_Click)));
cms.Items.Add(new ToolStripSeparator());
cms.Items.Add(new ToolStripMenuItem("Reconnect", null, new EventHandler(Reconnect_Click)));