create a panel to select the color you want.取色器.based on js,jquery.
<div class="color_bo"></div>
actually, the color_bo
can change to any string you like.
but it should keep the same with the follow when you use it.
var c = new ColorBox($(".color_bo"));
c.initBox();
now you have the panel on your website
demo
you can use c.value
to get the value.it's a decimal number
if you want to get the hexadecimal value like #FFFFFF
you can use c.getStringValue()
.