Skip to content

Commit

Permalink
chore: 폰트 확장자 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
DaeWon9 committed Aug 23, 2024
1 parent 596c9ff commit 22a333f
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 26 deletions.
6 changes: 3 additions & 3 deletions packages/core/src/theme/globalStyles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ import { css } from "@emotion/react";
export const globalStyles = css`
@font-face {
font-family: "Pretendard-Bold";
src: url("/fonts/pretendard/Pretendard-Bold.otf") format("opentype");
src: url("/fonts/pretendard/Pretendard-Bold.woff") format("woff");
}
@font-face {
font-family: "Pretendard-Medium";
src: url("/fonts/pretendard/Pretendard-Medium.otf") format("opentype");
src: url("/fonts/pretendard/Pretendard-Medium.woff") format("woff");
}
@font-face {
font-family: "Pretendard-SemiBold";
src: url("/fonts/pretendard/Pretendard-SemiBold.otf") format("opentype");
src: url("/fonts/pretendard/Pretendard-SemiBold.woff") format("woff");
}
@font-face {
font-family: "PyeongChang-Bold";
Expand Down
46 changes: 23 additions & 23 deletions packages/core/src/theme/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,94 +101,94 @@ export const theme: ITheme = {
},
font: {
preM: css`
font-family: "Pretendard-Medium";
font-family: "Pretendard-Medium", serif;
`,
preSB: css`
font-family: "Pretendard-SemiBold";
font-family: "Pretendard-SemiBold", serif;
`,
preB: css`
font-family: "Pretendard-Bold";
font-family: "Pretendard-Bold", serif;
`,

preM20: css`
font-family: "Pretendard-Medium";
font-family: "Pretendard-Medium", serif;
font-size: 20px;
`,
preM18: css`
font-family: "Pretendard-Medium";
font-family: "Pretendard-Medium", serif;
font-size: 18px;
`,
preM14: css`
font-family: "Pretendard-Medium";
font-family: "Pretendard-Medium", serif;
font-size: 14px;
`,
preSB86: css`
font-family: "Pretendard-SemiBold";
font-family: "Pretendard-SemiBold", serif;
font-size: 86px;
`,
preB38: css`
font-family: "Pretendard-Bold";
font-family: "Pretendard-Bold", serif;
font-size: 38px;
`,
preB28: css`
font-family: "Pretendard-Bold";
font-family: "Pretendard-Bold", serif;
font-size: 28px;
`,
preB24: css`
font-family: "Pretendard-Bold";
font-family: "Pretendard-Bold", serif;
font-size: 24px;
`,
preB18: css`
font-family: "Pretendard-Bold";
font-family: "Pretendard-Bold", serif;
font-size: 18px;
`,
preB16: css`
font-family: "Pretendard-Bold";
font-family: "Pretendard-Bold", serif;
font-size: 16px;
`,

pcpL: css`
font-family: "PyeongChangPeace-Light";
font-family: "PyeongChangPeace-Light", serif;
`,
pcpB: css`
font-family: "PyeongChangPeace-Bold";
font-family: "PyeongChangPeace-Bold", serif;
`,
pcpL80: css`
font-family: "PyeongChangPeace-Light";
font-family: "PyeongChangPeace-Light", serif;
font-size: 80px;
`,
pcpL32: css`
font-family: "PyeongChangPeace-Light";
font-family: "PyeongChangPeace-Light", serif;
font-size: 32px;
`,
pcpL28: css`
font-family: "PyeongChangPeace-Light";
font-family: "PyeongChangPeace-Light", serif;
font-size: 28px;
`,

pcpB82: css`
font-family: "PyeongChangPeace-Bold";
font-family: "PyeongChangPeace-Bold", serif;
font-size: 82px;
`,
pcpB28: css`
font-family: "PyeongChangPeace-Bold";
font-family: "PyeongChangPeace-Bold", serif;
font-size: 28px;
`,

pcB: css`
font-family: "PyeongChang-Bold";
font-family: "PyeongChang-Bold", serif;
`,

pcB40: css`
font-family: "PyeongChang-Bold";
font-family: "PyeongChang-Bold", serif;
font-size: 40px;
`,
pcB28: css`
font-family: "PyeongChang-Bold";
font-family: "PyeongChang-Bold", serif;
font-size: 28px;
`,
pcB16: css`
font-family: "PyeongChang-Bold";
font-family: "PyeongChang-Bold", serif;
font-size: 16px;
`,
},
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 22a333f

Please sign in to comment.