Developer Engine

Palette Exporter

Customize, spec, and instantly output palette source formats for standard code systems.

Spec Name:Oceanic Lab

Current Palette

3 Colors
HEX
HEX
HEX

Export Format

JSON

Best for programmatic use

CSS Variables

Modern web standards

Tailwind Config

Ready for your theme

palette-export.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "name": "Oceanic Lab",
  "colors": [
    {
      "name": "deep-navy",
      "hex": "#001E2C",
      "rgb": [0, 30, 44],
      "hsl": [199, 100, 9]
    },
    {
      "name": "sky-blue",
      "hex": "#40C2FD",
      "rgb": [64, 194, 253],
      "hsl": [199, 98, 62]
    },
    {
      "name": "off-white",
      "hex": "#F7F9FB",
      "rgb": [247, 249, 251],
      "hsl": [210, 33, 98]
    }
  ]
}