abruzzo.ts

 1import chroma from "chroma-js";
 2import { colorRamp, createColorScheme } from "../common/ramps";
 3
 4const name = "Abruzzo";
 5const author = "slightknack <hey@isaac.sh>";
 6const url = "https://github.com/slightknack";
 7const license = {
 8  type: "",
 9  url: ""
10}
11
12export const dark = createColorScheme(`${name}`, false, {
13  neutral: chroma.scale([
14    "#1b0d05",
15    "#2c1e18",
16    "#654035",
17    "#9d5e4a",
18    "#b37354",
19    "#c1825a",
20    "#dda66e",
21    "#fbf3e2",
22  ]),
23  red: colorRamp(chroma("#e594c4")),
24  orange: colorRamp(chroma("#d9e87e")),
25  yellow: colorRamp(chroma("#fd9d83")),
26  green: colorRamp(chroma("#96adf7")),
27  cyan: colorRamp(chroma("#fc798f")),
28  blue: colorRamp(chroma("#BCD0F5")),
29  violet: colorRamp(chroma("#dac5eb")),
30  magenta: colorRamp(chroma("#c1a3ef")),
31});