Removed test theme files

This commit is contained in:
Mikayla Maki 2022-09-08 15:53:56 -07:00
parent 4de82c4103
commit afc3f3fe9c
4 changed files with 0 additions and 56 deletions

View File

View File

@ -1,28 +0,0 @@
import chroma from "chroma-js";
import { colorRamp, createTheme } from "../common/base16";
const name = "cave-experiments";
const ramps = {
neutral: chroma.scale([
"#555555",
"#555555",
"#555555",
"#555555",
"#555555",
"#555555",
"#555555",
"#555555",
]),
red: colorRamp(chroma("#555555")),
orange: colorRamp(chroma("#555555")),
yellow: colorRamp(chroma("#555555")),
green: colorRamp(chroma("#555555")),
cyan: colorRamp(chroma("#555555")),
blue: colorRamp(chroma("#555555")),
violet: colorRamp(chroma("#555555")),
magenta: colorRamp(chroma("#555555")),
};
export const dark = createTheme(`${name}-dark`, false, ramps);
export const light = createTheme(`${name}-light`, true, ramps);

View File

View File

@ -1,28 +0,0 @@
import chroma from "chroma-js";
import { colorRamp, createTheme } from "../common/base16";
const name = "cave-internal";
const ramps = {
neutral: chroma.scale([
"#111111",
"#222222",
"#333333",
"#444444",
"#555555",
"#888888",
"#999999",
"#000000",
]),
red: colorRamp(chroma("#aaaaaa")),
orange: colorRamp(chroma("#bbbbbb")),
yellow: colorRamp(chroma("#cccccc")),
green: colorRamp(chroma("#dddddd")),
cyan: colorRamp(chroma("#eeeeee")),
blue: colorRamp(chroma("#ffffff")),
violet: colorRamp(chroma("#ababab")),
magenta: colorRamp(chroma("#cdcdcd")),
};
export const dark = createTheme(`${name}-dark`, false, ramps);
export const light = createTheme(`${name}-light`, true, ramps);