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
12export const dark = createColorScheme(name, false, {
13    neutral: chroma.scale([
14        "#383838",
15        "#404040",
16        "#606060",
17        "#6f6f6f",
18        "#808080",
19        "#dcdccc",
20        "#c0c0c0",
21        "#ffffff",
22    ]),
23    red: colorRamp(chroma("#dca3a3")),
24    orange: colorRamp(chroma("#dfaf8f")),
25    yellow: colorRamp(chroma("#e0cf9f")),
26    green: colorRamp(chroma("#5f7f5f")),
27    cyan: colorRamp(chroma("#93e0e3")),
28    blue: colorRamp(chroma("#7cb8bb")),
29    violet: colorRamp(chroma("#dc8cc3")),
30    magenta: colorRamp(chroma("#000000")),
31})