zenburn.ts

 1import chroma from "chroma-js"
 2import { colorRamp, createColorScheme } from "../common/ramps"
 3
 4const name = "Zenburn"
 5const author = "elnawe"
 6const url = "https://github.com/elnawe/base16-zenburn-scheme"
 7const license = {
 8    type: "None",
 9    url: "",
10}
11
12// `name-[light|dark]`, isLight, color ramps
13export const dark = createColorScheme(`${name}`, false, {
14    neutral: chroma.scale([
15        "#383838",
16        "#404040",
17        "#606060",
18        "#6f6f6f",
19        "#808080",
20        "#dcdccc",
21        "#c0c0c0",
22        "#ffffff",
23    ]),
24    red: colorRamp(chroma("#dca3a3")),
25    orange: colorRamp(chroma("#dfaf8f")),
26    yellow: colorRamp(chroma("#e0cf9f")),
27    green: colorRamp(chroma("#5f7f5f")),
28    cyan: colorRamp(chroma("#93e0e3")),
29    blue: colorRamp(chroma("#7cb8bb")),
30    violet: colorRamp(chroma("#dc8cc3")),
31    magenta: colorRamp(chroma("#000000")),
32})