diff --git a/bitmapper/src/config.ts b/bitmapper/src/config.ts new file mode 100644 index 0000000..ca31367 --- /dev/null +++ b/bitmapper/src/config.ts @@ -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 };