Skip to main content
Color Palette exports your palette in two categories: code formats for use in web and app development, and art app formats for importing into design and illustration tools. Press E to open the export dialog.
Code formats produce text output you can paste directly into your project. All four formats are available as a file download or as a one-click copy to clipboard.

CSS Variables

Generates a :root block with numbered custom properties. Drop it in your stylesheet or design token file.
palette.css
:root {
  --color-1: #e63946;
  --color-2: #457b9d;
  --color-3: #1d3557;
}
PropertyValue
Format IDcss
File extension.css
MIME typetext/css
DeliveryCopy to clipboard or download

JSON

A plain JSON object with a colors array containing hex strings. Easy to consume in any language or pipeline.
palette.json
{
  "colors": [
    "#e63946",
    "#457b9d",
    "#1d3557"
  ]
}
PropertyValue
Format IDjson
File extension.json
MIME typeapplication/json
DeliveryCopy to clipboard or download

Tailwind Config

Generates a complete tailwind.config.js snippet you can merge into your project’s theme.extend.colors. Color names follow the color-N pattern.
tailwind.config.js
// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'color-1': '#e63946',
        'color-2': '#457b9d',
        'color-3': '#1d3557'
      }
    }
  }
}
PropertyValue
Format IDtailwind
File extension.js
MIME typetext/javascript
DeliveryCopy to clipboard or download

SCSS Variables

Generates Sass variable declarations, one per line. Compatible with SCSS and Sass (indented) syntax when imported or @used.
palette.scss
$color-1: #e63946;
$color-2: #457b9d;
$color-3: #1d3557;
PropertyValue
Format IDscss
File extension.scss
MIME typetext/x-scss
DeliveryCopy to clipboard or download

Exporting palettes

Step-by-step guide to the export workflow.

Color formats

Individual color copy formats (hex, RGB, HSL, CSS variable, etc.).

Sharing palettes

Copy a shareable link to your palette.

Build docs developers (and LLMs) love