๐ŸŒ
W3Schools
w3schools.com โ€บ colors โ€บ colors_picker.asp
HTML Color Picker
HTML CSS JAVASCRIPT SQL PYTHON ... AWS CYBERSECURITY DATA SCIENCE INTRO TO PROGRAMMING INTRO TO HTML & CSS BASH RUST ยท Colors HOME Color Names Color Values Color Groups Color Shades Color Picker Color Mixer Color Converter Color RGB Color HEX Color HSL Color HWB Color ...
๐ŸŒ
HTML Color Codes
htmlcolorcodes.com โ€บ color-picker
Color Picker โ€“ HTML Color Codes
Our color picker lets you select from the millions of available colors, finding hex codes (or RGB, HSL, HSV and OKLCH codesโ€ฆ but more on that later).
Discussions

The CSS color picker you have always wanted.
Create your account and connect with a world of communities ยท Anyone can view, post, and comment to this community More on reddit.com
๐ŸŒ r/web_design
57
421
April 30, 2012
How to create a color picker in html? - Stack Overflow
How to make a color picker, like we see in different websites where users can scroll down different colors and on click can get the color code? I have tried of making a rows and columns but it wa... More on stackoverflow.com
๐ŸŒ stackoverflow.com
What app do you guys use to pick colors?

in chrome I use the built in color picker. I press F12 to open the developer console and just click on the box where the colors in the styles areas are..:

http://imgur.com/a/4wBcc

More on reddit.com
๐ŸŒ r/css
25
19
February 5, 2015
[help] How do you choose colors for a website?

this is more an r/design question than a CSS question - read up on some very basics of color theory or check out adobe color for a cheat sheet https://color.adobe.com/

More on reddit.com
๐ŸŒ r/css
13
19
April 19, 2017
People also ask

Is Image Color Picker free to use?
Yes, Image Color Picker is 100% free. No signup or registration is needed. Your images are processed entirely in your browser โ€” no data is uploaded to our servers.
๐ŸŒ
imagecolorpicker.com
imagecolorpicker.com โ€บ home
Color Picker from Image โ€“ Free HEX, RGB & Color Code Finder
How do I pick a color from an image?
Upload your image, paste it from your clipboard, or enter an image URL. Then click anywhere on the image to instantly get the color code in HEX, RGB, HSL and more formats.
๐ŸŒ
imagecolorpicker.com
imagecolorpicker.com โ€บ home
Color Picker from Image โ€“ Free HEX, RGB & Color Code Finder
How do I find the exact color code of an image?
Upload your image to our color picker, then click on the exact pixel you want. The tool instantly displays the HEX, RGB, HSL, and CMYK values for that pixel.
๐ŸŒ
imagecolorpicker.com
imagecolorpicker.com โ€บ home
Color Picker from Image โ€“ Free HEX, RGB & Color Code Finder
๐ŸŒ
Image Color Picker
imagecolorpicker.com โ€บ home
Color Picker from Image โ€“ Free HEX, RGB & Color Code Finder
Upload an image, paste from clipboard, or enter a URL to instantly pick colors. Get HEX, RGB, HSL codes free โ€” no signup required.
๐ŸŒ
Netlify
hemesh-css-color-picker.netlify.app
CSS Color Picker
You need to enable JavaScript to run this app
๐ŸŒ
Pickcoloronline
pickcoloronline.com
Pick Color Online - Pick Hex Code from PDF, Image, Website!
Our color picker uses the latest EyeDropper API to get the HEX-Code of any color on your screen without downloading a software.
๐ŸŒ
Color Picker
colors-picker.com โ€บ home
Home - Color Picker | HEX Color Picker | HTML Color Picker
January 9, 2025 - Color Picker Color from Image HEX RGB HTML Color Codes With this online tool you can upload an image or provide a website URL
Find elsewhere
๐ŸŒ
Medium
medium.com โ€บ @ericvanrees โ€บ html-css-js-beginner-project-a-random-color-picker-9eacf7405bbf
HTML/CSS/JS Beginner Project: A Random Color Picker | by Eric van Rees | Medium
September 2, 2024 - There are two options: a โ€œsimpleโ€ ... to 9 and letters a-f). You can switch between different color modes by clicking the โ€œColor Flipperโ€ text in the top-left of the header....
๐ŸŒ
Reddit
reddit.com โ€บ r โ€บ web_design โ€บ comments โ€บ 18rwep โ€บ the_css_color_picker_you_have_always_wanted
The CSS color picker you have always wanted.
April 30, 2012 - Create your account and connect with a world of communities ยท Anyone can view, post, and comment to this community
๐ŸŒ
Coolors
coolors.co
Coolors - The super fast color palettes generator!
Color Picker Get useful color information like meaning, usage, variations, accessibility and conversion. Launch the color picker ยท Tailwind Colors Preview Tailwind CSS colors on real designs to see how they look in context before using them in your projects.
๐ŸŒ
FFFuel
fffuel.co โ€บ cccolor
cccolor: HEX, RGB & HSL color picker for HTML & CSS | fffuel
Simple online color picker for web designers, with color values automagically available as RGB, HSL, hex, or 8-digit hex (with alpha). Perfect for CSS and HTML.
๐ŸŒ
Material Design
m2.material.io โ€บ design โ€บ color โ€บ the-color-system.html
The color system
Build beautiful, usable products faster. Material Design is an adaptable systemโ€”backed by open-source codeโ€”that helps teams build high quality digital experiences.
Top answer
1 of 6
26

Option #1 - Native HTML Color Picker

As mentioned in the previous answers you can use Native HTML color picker element:

<input type="color" />

For more info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/color

Option #2 - 3rd party Color Picker

If the Native color picker not meet your criteria, since it has an obsolete look and not look as slick as modern Color-Pickers, you can use one of literally hundreds of color pickers on the web. Even a simple search on the NPM packages page will return a few hundreds results to pick from.
https://www.npmjs.com/search?q=color%20picker

Option #3 - Build your own Color-Picker

If you like me, and after a long search of color-picker library, you didn't find a picker that meet your criteria, you can build you color picker, which not take too long as I will demonstrate.

  1. Find a Color-Wheel image that will be your picker, for example:
    (a more complex colors-wheel probable needed in real application)

  2. In your .html file, create a canvas element.

<canvas id="colorCanvas" class="color-canvas" width="250" height="250"></canvas>
  1. Give the canvas element border-radius: 50%, this will make the canvas round, so only clicks inside the circle will be fired, and clicks in the edge will be ignored (we will need click event in the next steps).

  2. In your JavaScript, init the canvas with your color-picker image, and listen to click events

function initColorPicker()
{
    var canvasEl = document.getElementById('colorCanvas');
    var canvasContext = canvasEl.getContext('2d');

    var image = new Image(250, 250);
    image.onload = () => canvasContext.drawImage(image, 0, 0, image.width, image.height); 
    image.src = "./images/myColorPickerImage.png";

    canvasEl.onclick = function(mouseEvent) 
    {
      var imgData = canvasContext.getImageData(mouseEvent.offsetX, mouseEvent.offsetY, 1, 1);
      var rgba = imgData.data;

      alert("rgba(" + rgba[0] + ", " + rgba[1] + ", " + rgba[2] + ", " + rgba[3] + ")");
    }
}
2 of 6
18

You can simply create a color picker by <input> with type as color. But it works only in modern browsers.

<input name="Color Picker" type="color"/>

๐ŸŒ
Adobe
color.adobe.com
Adobe Color: Color palette generator
We cannot provide a description for this page right now
๐ŸŒ
Chrome Web Store
chromewebstore.google.com โ€บ detail โ€บ color-picker-for-chrome โ€บ clldacgmdnnanihiibdgemajcfkmfhia
Color Picker for Chromeโ„ข - Chrome Web Store
Color Picker Chrome extension addon lets you to pick color from any webpage ... Average rating 4.5 out of 5 stars. Learn more about results and reviews. An easy-to-use font inspector to get CSS styles of the selected element
๐ŸŒ
Color Hex
color-hex.com
Color Hex Color Codes
Color-hex gives information about colors including color models (RGB,HSL,HSV and CMYK), Triadic colors, monochromatic colors and analogous colors calculated in color page. Color-hex.com also generates a simple css code for the selected color. Html element samples are also shown below the color detail page.
๐ŸŒ
Drupal
drupal.org โ€บ docs โ€บ contributed-modules โ€บ style-selector โ€บ css-color-picker-tutorial
CSS Color Picker Tutorial | Style Selector | Drupal Wiki guide on Drupal.org
November 28, 2022 - A quick guide to using Style Selector to create a CSS color picker that can set either background or text/foreground color.
๐ŸŒ
Quackit
quackit.com โ€บ css โ€บ css_color_codes.cfm
CSS Color Codes
Use the following color picker or color charts to pick a color that you can use within your CSS code. The color picker provides the color values in hexadecimal and RGB.
๐ŸŒ
Css
css.land โ€บ lch
LCH Colour picker
Lightness (0-100) Chroma (0-132) Hue (0-360) Alpha (0-100) CSS Color (3 decimals) sRGB Color ๐Ÿ‘
๐ŸŒ
Shoelace
shoelace.style โ€บ components โ€บ color-picker
Color Picker
The color picker can be rendered inline instead of in a dropdown using the inline attribute. <sl-color-picker inline label="Select a color"></sl-color-picker>
๐ŸŒ
Chrome Web Store
chromewebstore.google.com โ€บ detail โ€บ colorzilla โ€บ bhlhnicpbhignbdhedgjhgdocnmhomnp
ColorZilla - Chrome Web Store
== Features == โœ“ Eyedropper - get the color of any pixel on the page โœ“ Advanced Color Picker (similar to Photoshop's) โœ“ Ultimate CSS Gradient Generator โœ“ Webpage Color Analyzer - get a color palette for any site โœ“ Palette Viewer with 7 pre-installed palettes โœ“ Color History of recently picked colors โœ“ Various sampling sizes - 1x1, 3x3, 5x5, 11x11 and 25x25 pixels โœ“ Sample average color of any selected area โœ“ Displays element information like tag name, class, id, size etc.