Element 1  Change the background color to any of the following: 
maroon
 peru
 red
 rgb(255,255,0)
 lime
 aqua
 #BBBBDD
 teal
 navy
 purple

 Element 2  Change the foreground color to any of the following: 
maroon
 peru
 red
 rgb(255,255,0)
 lime
 aqua
 #BBBBDD
 teal
 navy
 purple

Hex-to-RGB Conversion

      R: G: B:
function rgbToHex(R,G,B) {return toHex(R)+toHex(G)+toHex(B)}
function toHex(n) {
 n = parseInt(n,10);
 if (isNaN(n)) return "00";
 n = Math.max(0,Math.min(n,255));
 return "0123456789ABCDEF".charAt((n-n%16)/16)
      + "0123456789ABCDEF".charAt(n%16);
}

Hex-to-RGB Conversion

     R: G: B: