- Tailwind palette
- Carbon design system
- Ant design system
- Chakra UI
- Material Design 3
- Dedicated library or singleton for Jetpack compose?
Contributions are always welcome — whether it’s fixing bugs, improving documentation or adding new color systems.
- Make a fork of this repository
- Create a new branch for your changes
- Commit your work with clear, concise messages
- Open a Pull Request against the
developmentbranch
We’ll review, discuss, and merge after feedback.
- Before opening an issue, please check if a similar one already exists.
- If a closed issue still persists, feel free to reopen or create a new one.
- For bug reports, include as much detail as possible (logs, screenshots, test cases, minimal reproductions).
Consistent indentation plays an important role in readability and maintainability of code.
✅ Correct indentation:
fun correctIndent() {
doSomethingHere {
val x = "some string var"
}
}❌ Wrong indentation:
fun inCorrectIndent()
{
doSomethingHere
{
val x = "some string var"
}
}Please follow the correct indentation style before submitting a pull request.