package net.i2p.router.web; public class ConfigUIHelper extends HelperBase { public ConfigUIHelper() {} public static final String PROP_THEME = "routerconsole.theme"; private static final String themes[] = {"classic", "dark", "light"}; public String getSettings() { StringBuilder buf = new StringBuilder(512); String current = _context.getProperty(PROP_THEME, "default"); for (String theme : themes) { buf.append("").append(theme).append("
\n"); } return buf.toString(); } }