diff --git a/packages/round/src/config.ts b/packages/round/src/config.ts index c04356a8..849227d4 100644 --- a/packages/round/src/config.ts +++ b/packages/round/src/config.ts @@ -9,6 +9,7 @@ const rawSvgsDir = path.resolve("./src/svg/raw"); if (!fs.existsSync(rawSvgsDir)) console.error("🚨🚨 Raw files not Found 🚨🚨"); // --------------------------------------- 🌈 Cursors Variants 🌈 +const schemesPath = path.resolve("./src/svg"); const colorSchemes: ColorSchema = { Ice: { base: "#FFFFFF", @@ -22,4 +23,4 @@ const colorSchemes: ColorSchema = { // --------------------------------------- 🔧 Render Configs 🔧 -export { rawSvgsDir, colorSchemes }; +export { rawSvgsDir, schemesPath, colorSchemes };