developers.do

Color Picker

Pick colors, convert between HEX/RGB/HSL/HSV/CMYK, and browse curated palettes (Tailwind, Nord, Solarized, Dracula, GitHub, Material, One Dark)

Curated Palettes

29 of 29 palettes — Tailwind CSS v3 (22 families × 11 shades), Nord, Solarized, Dracula, GitHub, Material, and One Dark. Click any swatch to copy.

Tailwind Slate

11 colors

Tailwind CSS Slate family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Gray

11 colors

Tailwind CSS Gray family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Zinc

11 colors

Tailwind CSS Zinc family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Neutral

11 colors

Tailwind CSS Neutral family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Stone

11 colors

Tailwind CSS Stone family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Red

11 colors

Tailwind CSS Red family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Orange

11 colors

Tailwind CSS Orange family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Amber

11 colors

Tailwind CSS Amber family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Yellow

11 colors

Tailwind CSS Yellow family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Lime

11 colors

Tailwind CSS Lime family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Green

11 colors

Tailwind CSS Green family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Emerald

11 colors

Tailwind CSS Emerald family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Teal

11 colors

Tailwind CSS Teal family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Cyan

11 colors

Tailwind CSS Cyan family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Sky

11 colors

Tailwind CSS Sky family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Blue

11 colors

Tailwind CSS Blue family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Indigo

11 colors

Tailwind CSS Indigo family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Violet

11 colors

Tailwind CSS Violet family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Purple

11 colors

Tailwind CSS Purple family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Fuchsia

11 colors

Tailwind CSS Fuchsia family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Pink

11 colors

Tailwind CSS Pink family — 11 shades from 50 (lightest) to 950 (darkest).

Tailwind Rose

11 colors

Tailwind CSS Rose family — 11 shades from 50 (lightest) to 950 (darkest).

Nord

16 colors

Arctic, north-bluish color palette inspired by the polar regions.

Solarized Light

16 colors

Ethan Schoonover's precision palette for dark-on-light UIs.

Solarized Dark

16 colors

Precision palette flipped for light-on-dark UIs.

Dracula

11 colors

Dark theme palette for code editors and terminals.

GitHub

12 colors

GitHub's default light and accent palette.

Material Design

18 colors

Google Material Design base color palette.

One Dark

10 colors

Atom One Dark theme palette, popular in code editors.

Guide

About this color picker

Pick a color visually on the saturation/brightness field with a hue slider, or type a hex value directly — with or without the #, in 3- or 6-digit form. The tool instantly converts to RGB, HSL, HSV, and CMYK with one-click copy, and generates full harmony palettes from your pick: complementary, analogous, split-complementary, triadic, tetradic, monochromatic, tints, and shades, plus a ready-made web development scale. You can also search and browse curated palettes including Tailwind, Nord, Solarized, and Dracula.

How to use the color picker

  1. 1.Drag on the gradient field for saturation and brightness; drag the hue slider for the base hue.
  2. 2.Or type a hex value like 7c3aed — shorthand (#abc) and a missing # are handled automatically.
  3. 3.Copy any format: HEX, RGB, HSL, HSV, or CMYK.
  4. 4.Scroll the generated harmonies and curated palettes for variations and ready-made scales.

Important details

Which format to use in CSS

HEX (#7c3aed) is compact and universal. rgb(124, 58, 237) is the same value with room for an alpha channel via rgb(124 58 237 / 0.5). hsl(262, 83%, 58%) is the easiest to adjust by hand — nudge lightness for hover states without touching the hue. CMYK is not a CSS color; it is included for print handoff.

How the harmony palettes are built

Harmonies rotate the hue wheel by fixed angles: complementary adds 180°, analogous steps ±30°, triadic +120°, split-complementary ±150°, and tetradic +90° steps. Tints mix the color with white, shades with black, and monochromatic varies saturation and lightness at a fixed hue — the same math behind design-system color scales.

Identifying a hex you found in the wild

Paste any value — say #7c3aed — to see exactly what it is (a violet, and incidentally Tailwind CSS’s violet-600) and to generate matching colors around it. Filtering the curated list by name is a fast way to grab a complete Tailwind, Nord, Solarized, or Dracula ramp.

Frequently asked questions

What color is #7c3aed?

A medium-bright violet: rgb(124, 58, 237) or hsl(262, 83%, 58%). It is also the exact value of Tailwind CSS’s violet-600 utility class.

Is the CMYK conversion exact?

No. It is a mathematical RGB-to-CMYK transform without an ICC profile, so treat it as an estimate. Production print values depend on paper, ink, and the profile your print shop specifies.

Does the picker support transparency?

The picker works in opaque color space. Add alpha in CSS yourself — rgb(124 58 237 / 0.5) or an 8-digit hex like #7c3aed80 — after copying the base value.

References: MDN: CSS <color> data type