From c70be8bbe4c3f064fec523c2617146c22af8c15c Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+ful1e5@users.noreply.github.com> Date: Sat, 17 Apr 2021 16:33:46 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=F0=9F=8C=88=20bitmapper=20color=20?= =?UTF-8?q?config=20init?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bitmapper/src/config.ts | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 bitmapper/src/config.ts 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 };