mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-15 06:27:02 +05:30
common: add Manrope as a custom font
This commit is contained in:
parent
76973ccec2
commit
7991e769cb
3 changed files with 45 additions and 0 deletions
|
@ -0,0 +1,18 @@
|
|||
@file:JvmName("DesktopTheme")
|
||||
|
||||
package dev.msfjarvis.claw.common.theme
|
||||
|
||||
import androidx.compose.ui.text.font.FontFamily
|
||||
import androidx.compose.ui.text.font.FontWeight
|
||||
import androidx.compose.ui.text.platform.Font
|
||||
|
||||
actual val manropeFontFamily =
|
||||
FontFamily(
|
||||
Font("font/manrope_bold.ttf", FontWeight.Bold),
|
||||
Font("font/manrope_extrabold.ttf", FontWeight.ExtraBold),
|
||||
Font("font/manrope_extralight.ttf", FontWeight.ExtraLight),
|
||||
Font("font/manrope_light.ttf", FontWeight.Light),
|
||||
Font("font/manrope_medium.ttf", FontWeight.Medium),
|
||||
Font("font/manrope_regular.ttf", FontWeight.Normal),
|
||||
Font("font/manrope_semibold.ttf", FontWeight.SemiBold),
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue