feat: added monorepo

This commit is contained in:
2023-07-02 02:20:41 -03:00
parent db0d493944
commit c67dead763
38 changed files with 810 additions and 96 deletions

View File

@@ -0,0 +1,24 @@
/* eslint-disable sort-keys-fix/sort-keys-fix */
export interface Theme {
colors: {
primary: string;
secondary: string;
complementary: string;
textColor: {
primary: string;
};
};
}
const theme: Theme = {
colors: {
primary: '#635985',
secondary: '#443C68',
complementary: '#393053',
textColor: {
primary: '#ddd',
},
},
};
export default theme;