Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm building a website with HTML5 and CSS3, and I want to create a unique color picker with HTML5

Is there any way to customize the color picker?

share|improve this question
No, not really. marxsoftware.blogspot.com/2011/01/html5-color-picker.html – user166390 Nov 7 '11 at 7:05
Thanks for the answer...The only thing I found was a variety of jquery plug-in's.. :-) – user995124 Nov 7 '11 at 16:15

closed as not a real question by pst, 6502, Bo Persson, Jeremy Banks, ChrisF Nov 7 '11 at 23:58

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 1 down vote accepted

In Opera, the only browser to have implemented the color element, you can customize the set of colours offered with a datalist:

<datalist id="greyscale">
    <option value="#000000">
    <option value="#333333">
    <option value="#666666">
    <option value="#999999">
    <option value="#cccccc">
</datalist>
<fieldset class="col">
    <legend>Color element 2</legend>
    <label for="excolor2">Color: </label>
    <input type="color" id="excolor2" name="excolor2" list="greyscale">
</fieldset>

Here's some examples.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.