Skip to main content

Examples

This section provides full PaletteJSON files that illustrate the schema in practice. More examples can be found in the paletteJSON schema repository (link).

Demonstrates named colors with hex values only.

{
"palettes": [
{
"name": "Apple Crayons",
"slug": "apple-crayons",
"type": "categorical",
"description": "A collection of specific hues available on macOS and iOS, originally named for the feel of old crayons",
"author": {
"name": "Apple Corporation",
"url": "https://apple.com"
},
"colors": [
{ "name": "Licorice", "hex": "#000000" },
{ "name": "Lead", "hex": "#212121" },
{ "name": "Tungsten", "hex": "#424242" },
{ "name": "Iron", "hex": "#5E5E5E" },
{ "name": "Steel", "hex": "#797979" },
{ "name": "Tin", "hex": "#919191" },
{ "name": "Nickel", "hex": "#929292" },
{ "name": "Aluminium", "hex": "#A9A9A9" },
{ "name": "Magnesium", "hex": "#C0C0C0" },
{ "name": "Silver", "hex": "#D6D6D6" },
{ "name": "Mercury", "hex": "#EBEBEB" },
{ "name": "Snow", "hex": "#FFFFFF" },
{ "name": "Cayenne", "hex": "#941100" },
{ "name": "Mocha", "hex": "#945200" },
{ "name": "Asparagus", "hex": "#929000" },
{ "name": "Fern", "hex": "#4F8F00" },
{ "name": "Clover", "hex": "#008F00" },
{ "name": "Moss", "hex": "#009051" },
{ "name": "Teal", "hex": "#009193" },
{ "name": "Ocean", "hex": "#005493" },
{ "name": "Midnight", "hex": "#011993" },
{ "name": "Eggplant", "hex": "#531B93" },
{ "name": "Plum", "hex": "#942193" },
{ "name": "Maroon", "hex": "#941751" },
{ "name": "Maraschino", "hex": "#FF2600" },
{ "name": "Tangerine", "hex": "#FF9300" },
{ "name": "Lemon", "hex": "#FFFB00" },
{ "name": "Lime", "hex": "#8EFA00" },
{ "name": "Spring", "hex": "#00F900" },
{ "name": "Sea Foam", "hex": "#00FA92" },
{ "name": "Turquoise", "hex": "#00FDFF" },
{ "name": "Aqua", "hex": "#0096FF" },
{ "name": "Blueberry", "hex": "#0433FF" },
{ "name": "Grape", "hex": "#9437FF" },
{ "name": "Magenta", "hex": "#FF40FF" },
{ "name": "Strawberry", "hex": "#FF2F92" },
{ "name": "Salmon", "hex": "#FF7E79" },
{ "name": "Cantaloupe", "hex": "#FFD479" },
{ "name": "Banana", "hex": "#FFFC79" },
{ "name": "Honeydew", "hex": "#D4FB79" },
{ "name": "Flora", "hex": "#73FA79" },
{ "name": "Spindrift", "hex": "#73FCD6" },
{ "name": "Ice", "hex": "#73FDFF" },
{ "name": "Sky", "hex": "#76D6FF" },
{ "name": "Orchid", "hex": "#7A81FF" },
{ "name": "Lavender", "hex": "#D783FF" },
{ "name": "Bubblegum", "hex": "#FF85FF" },
{ "name": "Carnation", "hex": "#FF8AD8" }
]
}
]
}

Next: return to the Specification or explore other parts of the docs.