From 9a4f87efe5466eba9d3cb33f3444e0daae8d087a Mon Sep 17 00:00:00 2001 From: nijuy Date: Thu, 1 Aug 2024 20:13:47 +0900 Subject: [PATCH] =?UTF-8?q?docs:=20TypoDocs.md=20=EB=82=B4=EC=9A=A9=20?= =?UTF-8?q?=EC=97=85=EB=8D=B0=EC=9D=B4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 한글/영문 관련 내용 삭제 --- src/style/foundation/typo/TypoDocs.md | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/src/style/foundation/typo/TypoDocs.md b/src/style/foundation/typo/TypoDocs.md index eb07f18..12a92e8 100644 --- a/src/style/foundation/typo/TypoDocs.md +++ b/src/style/foundation/typo/TypoDocs.md @@ -3,7 +3,6 @@ Handy Typography는 Handy에서 사용하는 타이포그래피 스타일입니다. - 폰트는 **Pretendard**를 사용합니다. 단, 필기체와 같은 브랜딩 폰트는 가이드에서 벗어나 자유롭게 사용 가능합니다. -- 폰트의 **한글과 영문을 잘 구분**해서 사용합니다. - 굵기는 Light(300), Regular(400), Semibold(600) 만 사용합니다. - subset 파일을 사용하므로, 지원하지 않는 글자에 대해 유의해주세요. @@ -11,7 +10,7 @@ Handy Typography는 Handy에서 사용하는 타이포그래피 스타일입니 또한, 타이포그래피의 이름은 아래의 규칙을 따릅니다. -> <이름>\_<한글or영문>\_<굵기>\_<크기> +> <이름>\_<굵기>\_<크기>
@@ -19,25 +18,13 @@ Handy Typography는 Handy에서 사용하는 타이포그래피 스타일입니
-## 한글 타이포그래피 사용법 +## 타이포그래피 사용법 ```ts import { styled } from 'styled-components'; const StyledDiv = styled.div` - ${({ theme }) => theme.typo.kr.D1_EN_Sb_96}; -`; -``` - -
- -## 영문 타이포그래피 사용법 - -```ts -import { styled } from 'styled-components'; - -const StyledDiv = styled.div` - ${({ theme }) => theme.typo.en.D1_EN_Sb_96}; + ${({ theme }) => theme.typo.D1_Sb_96}; `; ```