🎭 Masking key

This commit is contained in:
ful1e5 2020-08-20 11:41:33 +05:30
parent ea545b1016
commit 9fa3733b9e

View file

@ -11,6 +11,8 @@ const rawSvgsDir = path.resolve("svg");
const schemesPath = path.resolve("schemes");
// --------------------------------------- Colors✨
const baseKeyColor = /#00FF00/g; // green Key
const outlineKeyColor = /#0000FF/g; // blue Key
const black = "#000000";
const white = "#FFFFFF";
@ -34,4 +36,11 @@ const colorSchemes: ColorSchema = {
}
};
export { rawSvgsDir, bitmapsPath, schemesPath, colorSchemes };
export {
rawSvgsDir,
bitmapsPath,
schemesPath,
baseKeyColor,
outlineKeyColor,
colorSchemes
};