var a = this.getField("fieldName");
// create your own color by getting true RGB values and dividing each number by 255
color.myColor = new Array("RGB",1,1,.62);
a.fillColor = color.myColor;
// you can also use standard colors like this
a.fillColor = color.red
Hope that...