Skip to content

Commit 49be524

Browse files
committed
Add Type.kt
1 parent e6a892a commit 49be524

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

  • app/src/main/java/com/quickfilemanager/ui/theme
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
package com.quickfilemanager.ui.theme
2+
3+
import androidx.compose.material3.Typography
4+
import androidx.compose.ui.text.TextStyle
5+
import androidx.compose.ui.text.font.FontFamily
6+
import androidx.compose.ui.text.font.FontWeight
7+
import androidx.compose.ui.unit.sp
8+
9+
val Typography = Typography(
10+
bodyLarge = TextStyle(
11+
fontFamily = FontFamily.Default,
12+
fontWeight = FontWeight.Normal,
13+
fontSize = 16.sp,
14+
lineHeight = 24.sp,
15+
letterSpacing = 0.5.sp
16+
),
17+
titleLarge = TextStyle(
18+
fontFamily = FontFamily.Default,
19+
fontWeight = FontWeight.Normal,
20+
fontSize = 22.sp,
21+
lineHeight = 28.sp,
22+
letterSpacing = 0.sp
23+
),
24+
labelSmall = TextStyle(
25+
fontFamily = FontFamily.Default,
26+
fontWeight = FontWeight.Medium,
27+
fontSize = 11.sp,
28+
lineHeight = 16.sp,
29+
letterSpacing = 0.5.sp
30+
)
31+
)

0 commit comments

Comments
 (0)