🌈 More Colors typing

This commit is contained in:
ful1e5 2020-08-17 11:17:37 +05:30
parent 131b5b8572
commit c264a10e14

View file

@ -2,7 +2,19 @@ interface ColorSchema {
[name: string]: {
base: string;
outline: string;
watchBackground: string;
watch?: {
background: string;
color1: string;
color2: string;
color3: string;
color4: string;
};
customize?: {
[name: string]: {
outline?: string;
base?: string;
};
};
};
}