File tree Expand file tree Collapse file tree
app/src/main/java/com/quickfilemanager/ui/theme Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ )
You can’t perform that action at this time.
0 commit comments