14151617181920212223
public class ThemeData { public static Theme getTheme() { Theme theme = Property.get("Theme"); if(theme == null) { theme = new PixelPerfect(); ThemeData.setTheme(theme); } return theme; }