LuLi
50
100
200
300
400
500
600
700
800
900
950
LuLi
50
100
200
300
400
500
600
700
800
900
950
Neutral
Primary

Lightness/Luminance Distribution 0-100

100 (White)
0 (Black)
-
Lightness/Luminance
Hue
+

Hue Shift

-
Lightness/Luminance
Saturation
+

Saturation Shift

Palette Generator and API for Tailwind CSS

Read the launch blog post for full details on how this works.

Palette Creator

Set the initial Value as a valid hexadecimal colour. By default this is stop 500, but it can be changed to any stop from 50-950.

For colours that have 100% Saturation, make the Palette more interesting by shifting the Hue up or down.

Palettes starting from a Base colour with little Saturation get more interesting by increasing Saturation at the extremes.

Shift the Minimum/Maximum Lightness/Luminance to spread out the rest of the colours to the extremes of white and black. Switch between Lightness and Luminance to produce a different spread of colours at the extremes.

These principles are inspired by the excellent Refactoring UI book by Adam Wathan & Steve Schoger. The same book recommends against automated tools, just like this one!

This tool exists to fast-track the creation of new palettes.

Palette API

Any set of Palettes can be fetched via an API. You may find this useful for design tools that need to generate a 50-950 Palette from just a single Hex value.

Currently, the API will only return a Palette using the base hex value, with no options to have HSL tweaks.

Credits

Made by Simeon Griggs

Paste this into your tailwind.config.js

{
  "colors": {
    "Neutral": {
      50: "#F4F5F6",
      100: "#E6EAEA",
      200: "#D0D7D8",
      300: "#B6C1C3",
      400: "#9DACAE",
      500: "#85979A",
      600: "#687A7E",
      700: "#4F5C5F",
      800: "#353F40",
      900: "#191E1F",
      950: "#0E1011"
    },
    "Primary": {
      50: "#EEF9FB",
      100: "#DDF4F8",
      200: "#C0EAF2",
      300: "#9EDFEA",
      400: "#81D5E4",
      500: "#5FCADD",
      600: "#2DB9D2",
      700: "#21899C",
      800: "#165D69",
      900: "#0B2D32",
      950: "#051619"
    }
  }
}