css
adds custom CSS classes to ColorPicker
css?: string;
Example
<style>
.my_first_class {
/*some styles*/
}
.my_second_class {
/*some styles*/
}
</style>
var colorpicker = new dhx.Colorpicker({
css:"my_first_class my_second_class"
});
Related sample: Colorpicker. Custom CSS
Note, that the DHTMLX library provides a set of own CSS classes that you can also apply to change the appearance of ColorPicker:
var colorpicker = new dhx.Colorpicker({
css: "dhx_widget--bg_white"
});