private final static String SILVERTAIL_DISPLAY = "Silvertail";
private final static int SILVERTAIL_PRIORITY = 600;
public void init(WebApp webapp) throws Exception {
if (webapp.getConfiguration().getThemeProvider() == null)
webapp.getConfiguration().setThemeProvider(new StandardThemeProvider());
Themes.register(Themes.CLASSICBLUE_NAME, Themes.CLASSICBLUE_DISPLAY, Themes.CLASSICBLUE_PRIORITY);
Themes.register(SILVERTAIL_NAME, SILVERTAIL_DISPLAY, SILVERTAIL_PRIORITY);
}