mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-28 22:14:21 -04:00
✨ Bitmapper packages updated
This commit is contained in:
parent
c92343ece3
commit
2b021d2321
11 changed files with 106 additions and 106 deletions
|
@ -1,27 +0,0 @@
|
|||
import { ThemeColors } from "bibata-core/src/types";
|
||||
|
||||
// Common Colors
|
||||
const black = "#000000";
|
||||
const white = "#FFFFFF";
|
||||
const amber = "#FF8300";
|
||||
const richBlack = "#001524";
|
||||
|
||||
const themeColors: ThemeColors = {
|
||||
Amber: {
|
||||
base: amber,
|
||||
outline: white,
|
||||
watch: {
|
||||
background: richBlack
|
||||
}
|
||||
},
|
||||
Classic: {
|
||||
base: black,
|
||||
outline: white
|
||||
},
|
||||
Ice: {
|
||||
base: white,
|
||||
outline: black
|
||||
}
|
||||
};
|
||||
|
||||
export { themeColors };
|
|
@ -1,22 +1,8 @@
|
|||
import { createBitmaps } from "bibata-core";
|
||||
import { themeColors } from "./colors";
|
||||
import { resolve } from "path";
|
||||
import { main } from "bibata-core";
|
||||
|
||||
const main = async () => {
|
||||
const projectRoot = resolve("../../");
|
||||
const args = {
|
||||
themeName: "Bibata-Modern",
|
||||
svgDir: resolve("./src/svg"),
|
||||
bitmapsDir: resolve(projectRoot, "bitmaps"),
|
||||
themeColors
|
||||
};
|
||||
|
||||
try {
|
||||
await createBitmaps(args);
|
||||
process.exit(0);
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
}
|
||||
const hmm = async () => {
|
||||
main();
|
||||
console.log("Bibata modern");
|
||||
};
|
||||
|
||||
main();
|
||||
hmm();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue