1 | The colors are fairly easy to convert, too: String bgColorStr = getParameter( "bgColor" ); bgColorStr = bgColorStr.trim(); if ( bgColorStr.charAt(0) == "#" ) { bgColorStr = bgColorStr.substring(1); } int bgColorInt = Integer.parseInt( bgColorStr, 16 ); Color bgColor = new Color( bgColorInt ); |