foregroundColor

This parameter determines the color of the text on the login and links list interface. To use this parameter, add it to the applet tag inReflectionData/ReflectionClient.html.

Value

You can specify a color in one of three ways:

  • Hexadecimal - <param name="foregroundColor" value="#CCCCCC">

  • RGB (red, green, blue) - <param name="foregroundColor" 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="foregroundColor" value="lightGray">

The default foreground color is black.

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="foregroundColor" value="0,51,102">
</applet>