mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-06-07 09:55:19 -04:00
🔧 cursors render based on Colors Schemes
This commit is contained in:
parent
e033242f1c
commit
b14ab4f297
1 changed files with 12 additions and 2 deletions
|
@ -2,7 +2,17 @@ import path from "path";
|
||||||
import fs from "fs";
|
import fs from "fs";
|
||||||
import { staticCursors, animatedCursors, animatedClip } from "./cursors.json";
|
import { staticCursors, animatedCursors, animatedClip } from "./cursors.json";
|
||||||
|
|
||||||
// --------------------------------------- Cursors Config
|
// --------------------------------------- 🌈 Cursors Variants 🌈
|
||||||
|
|
||||||
|
const colorSchemes = {
|
||||||
|
ice: {
|
||||||
|
base: "#ffffff",
|
||||||
|
outline: "#000000",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
// --------------------------------------- 🔧 Cursors Config 🔧
|
||||||
|
|
||||||
// Source Directory
|
// Source Directory
|
||||||
const svgsDir = path.resolve(__dirname, "svg");
|
const svgsDir = path.resolve(__dirname, "svg");
|
||||||
|
|
||||||
|
@ -23,4 +33,4 @@ const renderConfig = {
|
||||||
animatedClip,
|
animatedClip,
|
||||||
};
|
};
|
||||||
|
|
||||||
export { renderConfig };
|
export { renderConfig, colorSchemes };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue