Set product sans as the default font and make corner more round (android 12-ish look)
This commit is contained in:
parent
0335e1c7a5
commit
a080089811
@ -5,7 +5,7 @@ import androidx.compose.material.Shapes
|
|||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
|
|
||||||
val Shapes = Shapes(
|
val Shapes = Shapes(
|
||||||
small = RoundedCornerShape(4.dp),
|
small = RoundedCornerShape(6.dp),
|
||||||
medium = RoundedCornerShape(4.dp),
|
medium = RoundedCornerShape(12.dp),
|
||||||
large = RoundedCornerShape(0.dp)
|
large = RoundedCornerShape(0.dp)
|
||||||
)
|
)
|
@ -27,21 +27,20 @@ val productSansFont = FontFamily(
|
|||||||
// Set of Material typography styles to start with
|
// Set of Material typography styles to start with
|
||||||
val Typography = Typography(
|
val Typography = Typography(
|
||||||
body1 = TextStyle(
|
body1 = TextStyle(
|
||||||
fontFamily = FontFamily.Default,
|
fontFamily = productSansFont,
|
||||||
fontWeight = FontWeight.Normal,
|
fontWeight = FontWeight.Normal,
|
||||||
fontSize = 16.sp
|
fontSize = 16.sp
|
||||||
)
|
),
|
||||||
/* Other default text styles to override
|
|
||||||
button = TextStyle(
|
button = TextStyle(
|
||||||
fontFamily = FontFamily.Default,
|
fontFamily = productSansFont,
|
||||||
fontWeight = FontWeight.W500,
|
fontWeight = FontWeight.Medium,
|
||||||
fontSize = 14.sp
|
fontSize = 14.sp
|
||||||
),
|
),
|
||||||
caption = TextStyle(
|
caption = TextStyle(
|
||||||
fontFamily = FontFamily.Default,
|
fontFamily = productSansFont,
|
||||||
fontWeight = FontWeight.Normal,
|
fontWeight = FontWeight.Normal,
|
||||||
fontSize = 12.sp
|
fontSize = 12.sp
|
||||||
)
|
),
|
||||||
*/
|
defaultFontFamily = productSansFont
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user