How to set default color in DHTMLX ColorPicker

I am using DHTMLX ColorPicker. if I am using getSelectedColor()[0] then it is returning “#5be516”. I want default color should be white.

a) you can set “selectedcolor” attribute to the element (input) to each colorpicker is attached
<input selectedcolor=“FFFFFF” …

b) you can set color exactly after colorpicker creation

var cp = new dhtmlXColorPickerInput(…
cp.setColor(“FFFFFF”);