From 200a46861f9c35134c6f875322100b2c162e4851 Mon Sep 17 00:00:00 2001 From: Jeongmin Lee Date: Wed, 7 Aug 2024 00:29:31 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20settings:=20button1=20Medium=20?= =?UTF-8?q?=ED=8F=B0=ED=8A=B8=20Typography=20=EC=B6=94=EA=B0=80=20#15?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/theme/typography.ts | 8 ++++++++ tailwind.config.ts | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/src/styles/theme/typography.ts b/src/styles/theme/typography.ts index 574c2fe..7de6f27 100644 --- a/src/styles/theme/typography.ts +++ b/src/styles/theme/typography.ts @@ -143,6 +143,14 @@ export const TYPOGRAPHY = { letterSpacing: "0", }, }, + BUTTON1_MEDIUM: { + FONT_SIZE: "16px", + OPTIONS: { + fontWeight: 500, + lineHeight: "1.2", + letterSpacing: "0", + }, + }, BUTTON2_MEDIUM: { FONT_SIZE: "14px", OPTIONS: { diff --git a/tailwind.config.ts b/tailwind.config.ts index 126f48f..3f2c8b4 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -135,6 +135,10 @@ const config: Config = { TYPOGRAPHY.CAPTION2_MEDIUM.FONT_SIZE, TYPOGRAPHY.CAPTION2_MEDIUM.OPTIONS, ], + "button1-medium": [ + TYPOGRAPHY.BUTTON1_MEDIUM.FONT_SIZE, + TYPOGRAPHY.BUTTON1_MEDIUM.OPTIONS, + ], "button1-semi": [ TYPOGRAPHY.BUTTON1_SEMIBOLD.FONT_SIZE, TYPOGRAPHY.BUTTON1_SEMIBOLD.OPTIONS,