feat: legend

This commit is contained in:
2023-07-03 22:14:17 -03:00
parent 6f5a0ec34a
commit da3e6cb101
5 changed files with 70 additions and 35 deletions

View File

@@ -16,7 +16,7 @@ const theme: Theme = {
secondary: '#443C68',
complementary: '#393053',
textColor: {
primary: '#ddd',
primary: '#fff',
},
},
};

View File

@@ -0,0 +1 @@
export const capitalize = (str: string): string => str.charAt(0).toUpperCase() + str.slice(1);