Skip to content

Commit 45fef86

Browse files
committed
Feat: 기존 폰트 복구 및 color 네이밍 수정
1 parent 9577da4 commit 45fef86

1 file changed

Lines changed: 46 additions & 4 deletions

File tree

src/styles/theme.ts

Lines changed: 46 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ const theme: DefaultTheme = {
4242
// Functional Colors
4343
text: {
4444
primary: '#000000', // Black
45-
secondary: '#4343432', // Gray-800
46-
tertiary: '##7B7B7B', // Gray-600
45+
secondary: '#434343', // Gray-800
46+
tertiary: '#7B7B7B', // Gray-600
4747
caption: '#9E9E9E', // Gray-500
48-
onPrimary: '#FFFFFF', // brand.primary 배경 위 텍스트 (White)
48+
contrast: '#FFFFFF', // White
4949
},
5050

5151
background: {
@@ -57,7 +57,7 @@ const theme: DefaultTheme = {
5757
border: {
5858
active: '#FF2389', // Pink-500
5959
inactive: '#FFBBDA', // Pink-300
60-
devider: '#E9E9E9', // Gray-200
60+
divider: '#E9E9E9', // Gray-200
6161
},
6262

6363
//여기서부터 기존 **추후 삭제 필요**
@@ -391,6 +391,48 @@ const theme: DefaultTheme = {
391391
line-height: 127.3%; /* 0.87519rem */
392392
letter-spacing: -0.00213rem;
393393
`,
394+
395+
// TODO: 추후 삭제 필요
396+
'body2-light': css`
397+
font-family: 'Pretendard Variable';
398+
font-weight: 300; /* light */
399+
font-size: 1rem;
400+
`,
401+
'body4-regular': css`
402+
font-family: 'Pretendard Variable';
403+
font-weight: 400; /* normal */
404+
font-size: 0.813rem;
405+
`,
406+
'body4-light': css`
407+
font-family: 'Pretendard Variable';
408+
font-weight: 300; /* light */
409+
font-size: 0.813rem;
410+
`,
411+
'body6-regular': css`
412+
font-family: 'Pretendard Variable';
413+
font-weight: 400; /* normal */
414+
font-size: 0.75rem;
415+
`,
416+
'body6-light': css`
417+
font-family: 'Pretendard Variable';
418+
font-weight: 300; /* light */
419+
font-size: 0.75rem;
420+
`,
421+
'button1-medium': css`
422+
font-family: 'Pretendard Variable';
423+
font-weight: 500; /* medium */
424+
font-size: 1rem;
425+
`,
426+
'button2-medium': css`
427+
font-family: 'Pretendard Variable';
428+
font-weight: 500; /* medium */
429+
font-size: 0.813rem;
430+
`,
431+
'button2-light': css`
432+
font-family: 'Pretendard Variable';
433+
font-weight: 300; /* light */
434+
font-size: 0.813rem;
435+
`,
394436
},
395437
};
396438

0 commit comments

Comments
 (0)