diff --git a/styles/src/themes/abruzzo.ts b/styles/src/themes/abruzzo.ts deleted file mode 100644 index 915c81a0c9..0000000000 --- a/styles/src/themes/abruzzo.ts +++ /dev/null @@ -1,30 +0,0 @@ -import chroma from "chroma-js"; -import { colorRamp, createColorScheme } from "./common/ramps"; - -const name = "abruzzo"; - -const ramps = { - neutral: chroma - .scale([ - "#1b0d05", - "#2c1e18", - "#654035", - "#9d5e4a", - "#b37354", - "#c1825a", - "#dda66e", - "#fbf3e2", - ]) - .domain([0, 0.15, 0.35, 0.5, 0.6, 0.75, 0.85, 1]), - red: colorRamp(chroma("#e594c4")), - orange: colorRamp(chroma("#d9e87e")), - yellow: colorRamp(chroma("#fd9d83")), - green: colorRamp(chroma("#96adf7")), - cyan: colorRamp(chroma("#fc798f")), - blue: colorRamp(chroma("#BCD0F5")), - violet: colorRamp(chroma("#dac5eb")), - magenta: colorRamp(chroma("#c1a3ef")), -}; - -export const dark = createColorScheme(`${name}`, false, ramps); -// export const light = createTheme(`${name}-light`, true, ramps); diff --git a/styles/src/themes/brushtrees.ts b/styles/src/themes/brushtrees.ts deleted file mode 100644 index 8ffe07cd66..0000000000 --- a/styles/src/themes/brushtrees.ts +++ /dev/null @@ -1,30 +0,0 @@ -import chroma from "chroma-js"; -import { colorRamp, createColorScheme } from "./common/ramps"; - -const name = "brush-tree"; - -const ramps = { - neutral: chroma - .scale([ - "#485867", - "#5A6D7A", - "#6D828E", - "#8299A1", - "#98AFB5", - "#B0C5C8", - "#C9DBDC", - "#E3EFEF", - ]) - .domain([0, 0.17, 0.32, 0.48, 0.6, 0.715, 0.858, 1]), - red: colorRamp(chroma("#b38686")), - orange: colorRamp(chroma("#d8bba2")), - yellow: colorRamp(chroma("#aab386")), - green: colorRamp(chroma("#87b386")), - cyan: colorRamp(chroma("#86b3b3")), - blue: colorRamp(chroma("#868cb3")), - violet: colorRamp(chroma("#b386b2")), - magenta: colorRamp(chroma("#b39f9f")), -}; - -export const dark = createColorScheme(`${name}-dark`, false, ramps); -export const light = createColorScheme(`${name}-light`, true, ramps); diff --git a/styles/src/themes/summerfruit.ts b/styles/src/themes/summerfruit.ts deleted file mode 100644 index 8f0096bb5e..0000000000 --- a/styles/src/themes/summerfruit.ts +++ /dev/null @@ -1,28 +0,0 @@ -import chroma from "chroma-js"; -import { colorRamp, createColorScheme } from "./common/ramps"; - -const name = "summerfruit"; - -const ramps = { - neutral: chroma.scale([ - "#151515", - "#202020", - "#303030", - "#505050", - "#B0B0B0", - "#D0D0D0", - "#E0E0E0", - "#FFFFFF", - ]), - red: colorRamp(chroma("#FF0086")), - orange: colorRamp(chroma("#FD8900")), - yellow: colorRamp(chroma("#ABA800")), - green: colorRamp(chroma("#00C918")), - cyan: colorRamp(chroma("#1FAAAA")), - blue: colorRamp(chroma("#3777E6")), - violet: colorRamp(chroma("#AD00A1")), - magenta: colorRamp(chroma("#CC6633")), -}; - -export const dark = createColorScheme(`${name}-dark`, false, ramps); -export const light = createColorScheme(`${name}-light`, true, ramps);