/// <summary>Initializes a new instance of the <see cref="Theme" /> class.</summary> public Theme() { _rawTheme = string.Empty; _information = new ThemeInformation(); _colorPalette = new ColorPalette(); }
/// <summary>Initializes a new instance of the <see cref="Theme" /> class.</summary> /// <param name="themeInformation">The theme information.</param> /// <param name="colorPalette">The color Palette.</param> public Theme(ThemeInformation themeInformation, ColorPalette colorPalette) { UpdateTheme(themeInformation, colorPalette); }