This parameter determines the color of the background on the login and links list interface. The default background color is white.
Value
You can specify a color in one of three ways:
Hexadecimal - <param name="backgroundColor" value="#CCCCCC">
RGB (red, green, blue) - <param name="backgroundColor" value="204,204,204">
One of 13 named colors: black, blue, cyan, darkGray, gray, green, lightGray, magenta, orange, pink, red, white, and yellow - <param name="backgroundColor" value="lightGray">
Example
In the following applet tag, the background of the login form and links list interfaces is set to pale yellow.
<applet name="Launcher" code="com/wrq/rweb/Launcher.class" archive="Launcher.jar" codebase="./ex" width="500" height="440"> <param name="backgroundColor" value="#FFFFCC"> </applet>