Slide 47
Slide 47 text
private val colorGreen = Color(0xFF1B5E20.toInt())
@Composable
fun MosdroidTheme(@Children children: @Composable() () -> Unit) {
val colors = MaterialColors(primary = colorGreen)
val typography = MaterialTypography(
h5 = TextStyle(
fontFamily = FontFamily("Roboto"),
fontWeight = FontWeight.w700,
fontSize = 24.sp
),
h6 = TextStyle(
fontFamily = FontFamily("Roboto"),
fontWeight = FontWeight.w700,
fontSize = 18.sp
),
button = TextStyle(
fontFamily = FontFamily("Roboto"),
fontWeight = FontWeight.w800,
fontSize = 14.sp
)
)
MaterialTheme(colors = colors, typography = typography) {
children()
}
}