refactor: bigsur cursor bitmapper as node package

This commit is contained in:
ful1e5 2021-11-21 16:04:42 +05:30
parent c171d176ff
commit eca8cb5760
9 changed files with 99 additions and 784 deletions

View file

@ -1,28 +0,0 @@
import { Colors } from "./core/types";
interface Config {
themeName: string;
color: Colors;
}
const black = "#000000";
const white = "#FFFFFF";
const config: Config[] = [
{
themeName: "macOSBigSur",
color: {
base: black,
outline: white,
},
},
{
themeName: "macOSBigSur-White",
color: {
base: white,
outline: black,
},
},
];
export { config };