🔧🌈 bitmapper color config init

This commit is contained in:
ful1e5
2021-04-17 16:33:46 +05:30
parent 49ef4b5965
commit c70be8bbe4
+28
View File
@@ -0,0 +1,28 @@
import { Colors } from "./core/types";
interface Config {
themeName: string;
color: Colors;
}
const breeze = "#4D4D4D";
const white = "#FFFFFF";
const config: Config[] = [
{
themeName: "BreezeX Dark",
color: {
base: breeze,
outline: white,
},
},
{
themeName: "BreezeX Light",
color: {
base: white,
outline: breeze,
},
},
];
export { config };