Change the color to RGB or hex system in Document JavaScript Code
Hello,
I have this Document JasvaScipt code:
function SetLayerStateFromRadioButton(){ event.target.exportValues.forEach(function(cVal,i){ oWidget = this.getField(event.targetName + "." + i); oWidget.lineWidth = (cVal == event.value)?1:0; oWidget.borderColor = (cVal == event.value)?color.green:["T"]; }); }How can I change the green color to a dark green, this exact color: ["RGB", 40/255, 114/255, 79/255]
Here it is with the hex system #28724F
Thank you
