1import chroma from "chroma-js";
2import { colorRamp, createColorScheme } from "../common/ramps";
3
4const name = "Atelier Heath";
5const author = "Bram de Haan (http://atelierbramdehaan.nl)";
6const url = ""
7
8// `name-[light|dark]`, isLight, color ramps
9export const dark = createColorScheme(`${name}`, false, {
10 neutral: chroma
11 .scale([
12 "#1b181b",
13 "#292329",
14 "#695d69",
15 "#776977",
16 "#9e8f9e",
17 "#ab9bab",
18 "#d8cad8",
19 "#f7f3f7",
20 ]),
21 red: colorRamp(chroma("#ca402b")),
22 orange: colorRamp(chroma("#a65926")),
23 yellow: colorRamp(chroma("#bb8a35")),
24 green: colorRamp(chroma("#918b3b")),
25 cyan: colorRamp(chroma("#159393")),
26 blue: colorRamp(chroma("#516aec")),
27 violet: colorRamp(chroma("#7b59c0")),
28 magenta: colorRamp(chroma("#cc33cc")),
29});