aboutsummaryrefslogtreecommitdiff
path: root/samples/minimaloboe/src/main/kotlin/com/example/minimaloboe/ui/theme/Type.kt
diff options
context:
space:
mode:
Diffstat (limited to 'samples/minimaloboe/src/main/kotlin/com/example/minimaloboe/ui/theme/Type.kt')
-rw-r--r--samples/minimaloboe/src/main/kotlin/com/example/minimaloboe/ui/theme/Type.kt21
1 files changed, 21 insertions, 0 deletions
diff --git a/samples/minimaloboe/src/main/kotlin/com/example/minimaloboe/ui/theme/Type.kt b/samples/minimaloboe/src/main/kotlin/com/example/minimaloboe/ui/theme/Type.kt
new file mode 100644
index 00000000..b391730f
--- /dev/null
+++ b/samples/minimaloboe/src/main/kotlin/com/example/minimaloboe/ui/theme/Type.kt
@@ -0,0 +1,21 @@
+package com.example.minimaloboe.ui.theme
+
+import androidx.compose.material.Typography
+import androidx.compose.ui.text.TextStyle
+import androidx.compose.ui.text.font.FontFamily
+import androidx.compose.ui.text.font.FontWeight
+import androidx.compose.ui.unit.sp
+
+// Set of Material typography styles to start with
+val Typography = Typography(
+ body1 = TextStyle(
+ fontFamily = FontFamily.Default,
+ fontWeight = FontWeight.Normal,
+ fontSize = 24.sp
+ ),
+ button = TextStyle(
+ fontFamily = FontFamily.Default,
+ fontWeight = FontWeight.W500,
+ fontSize = 20.sp
+ )
+)