Skip to content

Commit

Permalink
[CHORE/#455] Compose Font 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
kkk5474096 committed Jul 24, 2024
1 parent 0a8d259 commit 0546e51
Show file tree
Hide file tree
Showing 17 changed files with 13 additions and 44 deletions.
11 changes: 0 additions & 11 deletions app/src/main/res/font/font_pretendard_bold.xml

This file was deleted.

11 changes: 0 additions & 11 deletions app/src/main/res/font/font_pretendard_medium.xml

This file was deleted.

11 changes: 0 additions & 11 deletions app/src/main/res/font/font_pretendard_regular.xml

This file was deleted.

11 changes: 0 additions & 11 deletions app/src/main/res/font/font_pretendard_semibold.xml

This file was deleted.

Binary file removed app/src/main/res/font/pretendard_bold.otf
Binary file not shown.
Binary file removed app/src/main/res/font/pretendard_medium.otf
Binary file not shown.
Binary file removed app/src/main/res/font/pretendard_regular.otf
Binary file not shown.
Binary file removed app/src/main/res/font/pretendard_semibold.otf
Binary file not shown.
Binary file removed app/src/main/res/font/unbounded_black.ttf
Binary file not shown.
Binary file removed app/src/main/res/font/unbounded_bold.ttf
Binary file not shown.
Binary file removed app/src/main/res/font/unbounded_extrabold.ttf
Binary file not shown.
Binary file removed app/src/main/res/font/unbounded_extralight.ttf
Binary file not shown.
Binary file removed app/src/main/res/font/unbounded_light.ttf
Binary file not shown.
Binary file removed app/src/main/res/font/unbounded_medium.ttf
Binary file not shown.
Binary file removed app/src/main/res/font/unbounded_regular.ttf
Binary file not shown.
Binary file removed app/src/main/res/font/unbounded_semibold.ttf
Binary file not shown.
13 changes: 13 additions & 0 deletions core-ui/src/main/java/com/example/ui/compose/theme/DesignTypo.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package com.example.ui.compose.theme

import androidx.compose.ui.text.font.Font
import androidx.compose.ui.text.font.FontFamily
import androidx.compose.ui.text.font.FontWeight
import com.yello.ui.R

val PretendardFontFamily = FontFamily(
Font(R.font.font_pretendard_regular, FontWeight.Normal),
Font(R.font.font_pretendard_medium, FontWeight.Medium),
Font(R.font.font_pretendard_bold, FontWeight.Bold),
Font(R.font.font_pretendard_semibold, FontWeight.SemiBold)
)

0 comments on commit 0546e51

Please sign in to comment.