How to select the font and backcolors in java menubar using the hexidecimal number?
Return to Recent Questions
Q:
Please let us know how to select the font and background colors
using the hexidecimal number? We have another website and want to
use the exact same color scheme. We want to enter the number such as
FF8080.
Hopefully, we can enter the hex numbers into this program.
A:
You should write, for example, so:
var menuBackColor = "#FF8080";
var menuBorderColor = "#FF8080";
var itemBackColor = ["#FF8080","#FF8080"];
var itemBorderColor = ["#FF8080","#FF8080"];
var fontColor = ["#000000","#FFFFFF"];
Return to Recent Questions
|