styles/src/themes/experiments/.gitkeep 🔗
Mikayla Maki created
styles/src/themes/experiments/.gitkeep | 0
styles/src/themes/experiments/cave-experiments.ts | 28 -----------------
styles/src/themes/internal/.gitkeep | 0
styles/src/themes/internal/cave-internal.ts | 28 -----------------
4 files changed, 56 deletions(-)
@@ -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);
@@ -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);