From 506c28d2b64a70cc221e0b2c6872c1f37dcff84c Mon Sep 17 00:00:00 2001 From: Nate Butler Date: Mon, 26 Sep 2022 15:39:21 -0400 Subject: [PATCH] Fix incorrect import --- styles/src/themes/internal/zed-pro.ts | 38 +++++++++++++-------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/styles/src/themes/internal/zed-pro.ts b/styles/src/themes/internal/zed-pro.ts index 664ff002311bd59fbb6accf8a492bcce0ad9de68..2ce7ebfa327325ead521459fd073dcde4fa4a8a0 100644 --- a/styles/src/themes/internal/zed-pro.ts +++ b/styles/src/themes/internal/zed-pro.ts @@ -1,27 +1,27 @@ import chroma from "chroma-js"; -import { colorRamp, createColorScheme } from "./common/ramps"; +import { colorRamp, createColorScheme } from "../common/ramps"; const name = "zed-pro"; const ramps = { - neutral: chroma.scale([ - "#101010", - "#1C1C1C", - "#212121", - "#2D2D2D", - "#B9B9B9", - "#DADADA", - "#E6E6E6", - "#FFFFFF", - ]), - red: colorRamp(chroma("#DC604F")), - orange: colorRamp(chroma("#DE782F")), - yellow: colorRamp(chroma("#E0B750")), - green: colorRamp(chroma("#2A643D")), - cyan: colorRamp(chroma("#215050")), - blue: colorRamp(chroma("#2F6DB7")), - violet: colorRamp(chroma("#5874C1")), - magenta: colorRamp(chroma("#DE9AB8")), + neutral: chroma.scale([ + "#101010", + "#1C1C1C", + "#212121", + "#2D2D2D", + "#B9B9B9", + "#DADADA", + "#E6E6E6", + "#FFFFFF", + ]), + red: colorRamp(chroma("#DC604F")), + orange: colorRamp(chroma("#DE782F")), + yellow: colorRamp(chroma("#E0B750")), + green: colorRamp(chroma("#2A643D")), + cyan: colorRamp(chroma("#215050")), + blue: colorRamp(chroma("#2F6DB7")), + violet: colorRamp(chroma("#5874C1")), + magenta: colorRamp(chroma("#DE9AB8")), }; export const dark = createColorScheme(`${name}-dark`, false, ramps);