Files
BreezeX_Cursor/bitmapper/src/config.ts
T
2021-06-18 14:36:12 +05:30

38 lines
535 B
TypeScript

import { Colors } from "./core/types";
interface Config {
themeName: string;
color: Colors;
}
const breeze = "#4D4D4D";
const white = "#FFFFFF";
const black = "#000000";
const config: Config[] = [
{
themeName: "BreezeX-Dark",
color: {
base: breeze,
outline: white,
},
},
{
themeName: "BreezeX-Light",
color: {
base: white,
outline: breeze,
},
},
{
themeName: "BreezeX-Black",
color: {
base: black,
outline: white,
},
},
];
export { config };