Skip to content

Commit

Permalink
[#9] grey색 추가 및 수정 fontWeight 수정, NanumFontFamily 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
03hoho03 committed May 11, 2024
1 parent eb395fb commit 60e43f2
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions src/styles/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,25 @@ export const theme = {
purple100: '#f3f4ff',
purple700: '#6c76f4',
grey100: '#fbfbfb',
grey200: '#eeeeee',
grey300: '#ECECEC',
grey500: '#D9D9D9',
grey400: '#D9D9D9',
grey500: '#c9c9c9',
grey600: '#9f9f9f',
grey700: '#989898',
red: '#ff0000',
},
fontWeight: {
light: 300,
normal: 500,
normal: 400, // regular
bold: 700,
extraBold: 900,
extraBold: 800,
},
NanumFontFamily: {
light: 'NanumSquareLight',
normal: 'NanumSquare', // regular
bold: 'NanumSquareBold',
extraBold: 'NanumSquareExtraBold',
},
} as const

Expand Down

0 comments on commit 60e43f2

Please sign in to comment.