1import chroma from "chroma-js";
2import { colorRamp, createColorScheme } from "./common/ramps";
3
4const name = "Summercamp";
5const author = "";
6const url = "";
7
8const ramps = {
9 neutral: chroma
10 .scale([
11 "#1c1810",
12 "#2a261c",
13 "#3a3527",
14 "#3a3527",
15 "#5f5b45",
16 "#736e55",
17 "#bab696",
18 "#f8f5de",
19 ])
20 .domain([0, 0.2, 0.38, 0.4, 0.65, 0.7, 0.85, 1]),
21 red: colorRamp(chroma("#e35142")),
22 orange: colorRamp(chroma("#fba11b")),
23 yellow: colorRamp(chroma("#f2ff27")),
24 green: colorRamp(chroma("#5ceb5a")),
25 cyan: colorRamp(chroma("#5aebbc")),
26 blue: colorRamp(chroma("#489bf0")),
27 violet: colorRamp(chroma("#FF8080")),
28 magenta: colorRamp(chroma("#F69BE7")),
29};
30
31export const dark = createColorScheme(`${name}`, false, ramps);