Theme CreateBlueTheme() { IColorTheme colorTheme = BlueColorTheme.Instance; IFontTheme fontTheme = BlueFontTheme.Instance; IImagesTheme imgTheme = BlueImagesTheme.Instance; return(new Theme(colorTheme, fontTheme, imgTheme)); }
Theme CreatePinkTheme() { IColorTheme colorTheme = PinkColorTheme.Instance; IFontTheme fontTheme = PinkFontTheme.Instance; IImagesTheme imgTheme = PinkImagesTheme.Instance; return(new Theme(colorTheme, fontTheme, imgTheme)); }
public Theme(IColorTheme colorTheme, IFontTheme fontTheme, IImagesTheme imgTheme) { this.colorTheme = colorTheme; this.fontTheme = fontTheme; this.imgTheme = imgTheme; ResetToDefaults(); }
Theme CreateRedTheme() { IColorTheme colorTheme = RedColorTheme.Instance; IFontTheme fontTheme = RedFontTheme.Instance; IImagesTheme imgTheme = RedImagesTheme.Instance; return(new Theme(colorTheme, fontTheme, imgTheme)); }
public Theme(IColorTheme colorTheme, IFontTheme fontTheme, IImagesTheme imgTheme) { this.colorTheme = colorTheme; this.fontTheme = fontTheme; this.imgTheme = imgTheme; ResetToDefaults (); }