🌈 BreezeX-Light and BreezeX-dark setup

This commit is contained in:
ful1e5
2021-06-04 17:54:04 +05:30
parent c547d56d33
commit 923ee5b08c
2 changed files with 9 additions and 9 deletions
+6 -6
View File
@@ -5,22 +5,22 @@ interface Config {
color: Colors;
}
const breeze = "#4D4D4D";
const white = "#FFFFFF";
const breezeColor = "#4D4D4D";
const whiteColor = "#FFFFFF";
const config: Config[] = [
{
themeName: "BreezeX-Dark",
color: {
base: breeze,
outline: white,
base: breezeColor,
outline: whiteColor,
},
},
{
themeName: "BreezeX-Light",
color: {
base: white,
outline: breeze,
base: whiteColor,
outline: breezeColor,
},
},
];