Skip to content

Commit

Permalink
feat: added theme colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Swackles committed Jan 10, 2024
1 parent cbc357f commit 126e3ea
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,29 @@ const theme = extendTheme({
colorSchemes: {
light: {
palette: {
primary: {
50: '#fff1f1',
100: '#ffe4e4',
200: '#fdced1',
300: '#fba6ab',
400: '#f9737f',
500: '#f14256',
600: '#d31f3c',
700: '#bb1534',
800: '#9c1532',
900: '#861531',
},
neutral: {
50: '#f6f6f6',
100: '#e7e7e7',
200: '#d1d1d1',
300: '#b0b0b0',
400: '#888888',
500: '#1F1F1F',
600: '#5d5d5d',
700: '#4f4f4f',
800: '#454545',
900: '#3d3d3d',
}
}
}
Expand Down

0 comments on commit 126e3ea

Please sign in to comment.