This example will help you change the style color to custom color in Metro Framework using C#

metro framework

We will change the top color i showed in the picture

this.Style = MetroFramework.MetroColorStyle.[Color]
  • Default
  • Black
  • White
  • Silver
  • Blue
  • Green
  • Lime
  • Teal
  • Orange
  • Brown
  • Pink
  • Magenta
  • Purple
  • Red
  • Yellow
this.Style = MetroFramework.MetroColorStyle.Blue;

You can also switch between light and dark themes

this.Theme = MetroFramework.MetroThemeStyle.Light;
//or
this.Theme = MetroFramework.MetroThemeStyle.Dark;