private MaterialSkinManager()
 {
     FONT_TITLE = new Font(LoadFont(Resources.Roboto_Medium), 12f);
     FONT_CONTROL_SMALL = new Font(LoadFont(Resources.Roboto_Medium), 9f);
     FONT_CONTROL_LARGE = new Font(LoadFont(Resources.Roboto_Medium), 10f);
     FONT_TEXT = new Font(LoadFont(Resources.Roboto_Regular), 9f);
     Theme = Themes.LIGHT;
     ColorScheme = new ColorScheme(Primary.ClaytexPrimary, Primary.ClaytexDark, Primary.ClaytexLight, Accent.ClaytexLight, TextShade.WHITE);
     ColorSchemes = new ColorSchemePresetCollection();
 }
示例#2
0
 private MaterialSkinManager()
 {
     ROBOTO_MEDIUM_12  = new Font(LoadFont(Resources.Roboto_Medium), 12f);
     ROBOTO_MEDIUM_10  = new Font(LoadFont(Resources.Roboto_Medium), 10f);
     ROBOTO_REGULAR_11 = new Font(LoadFont(Resources.Roboto_Regular), 11f);
     ROBOTO_MEDIUM_11  = new Font(LoadFont(Resources.Roboto_Medium), 11f);
     Theme             = Themes.DARK;
     ColorScheme       = new ColorScheme(Primary.Indigo500, Primary.Indigo700, Primary.Indigo100, Accent.Pink200, TextShade.WHITE);
     ColorSchemes      = new ColorSchemePresetCollection();
 }