import chroma from "chroma-js";
import { Meta } from "./common/colorScheme";
import { colorRamp, createColorScheme } from "./common/ramps";

const name = "Summercamp";

const ramps = {
  neutral: chroma
    .scale([
      "#1c1810",
      "#2a261c",
      "#3a3527",
      "#3a3527",
      "#5f5b45",
      "#736e55",
      "#bab696",
      "#f8f5de",
    ])
    .domain([0, 0.2, 0.38, 0.4, 0.65, 0.7, 0.85, 1]),
  red: colorRamp(chroma("#e35142")),
  orange: colorRamp(chroma("#fba11b")),
  yellow: colorRamp(chroma("#f2ff27")),
  green: colorRamp(chroma("#5ceb5a")),
  cyan: colorRamp(chroma("#5aebbc")),
  blue: colorRamp(chroma("#489bf0")),
  violet: colorRamp(chroma("#FF8080")),
  magenta: colorRamp(chroma("#F69BE7")),
};

export const dark = createColorScheme(`${name}`, false, ramps);
export const meta: Meta = {
  name,
  author: "zoefiri",
  url: "https://github.com/zoefiri/base16-sc",
  license: {
    SPDX: "MIT",
    https_url: "https://raw.githubusercontent.com/zoefiri/base16-sc/master/LICENSE",
    license_checksum: "fadcc834b7eaf2943800956600e8aeea4b495ecf6490f4c4b6c91556a90accaf"
  }
}