
Offers unified UI styling for Android and iOS applications, featuring flexible color palettes, typography, dimension systems, and dynamic theme switching for streamlined integration.
Design System KMP is a Kotlin Multiplatform (KMP) library for unified UI styling across Android and iOS applications. It provides typography, colors, spacing, and other design system components.
Add the library to your project dependencies:
dependencies {
implementation("io.github.yusuf0405:designsystem:<latest-version>")
}val typography = DesignSystemTheme.typography
Text("Hello, world!", style = typography.titleLarge.bold)val colors = DesignSystemTheme.colors
Box(modifier = Modifier.background(colors.primary))DesignSystemTheme(isDarkTheme = true) {
// Your content
}This project is licensed under the MIT License.
Design System KMP is a Kotlin Multiplatform (KMP) library for unified UI styling across Android and iOS applications. It provides typography, colors, spacing, and other design system components.
Add the library to your project dependencies:
dependencies {
implementation("io.github.yusuf0405:designsystem:<latest-version>")
}val typography = DesignSystemTheme.typography
Text("Hello, world!", style = typography.titleLarge.bold)val colors = DesignSystemTheme.colors
Box(modifier = Modifier.background(colors.primary))DesignSystemTheme(isDarkTheme = true) {
// Your content
}This project is licensed under the MIT License.