moko-graphics icon indicating copy to clipboard operation
moko-graphics copied to clipboard

Color palette with material colors

Open ausichenko opened this issue 5 years ago • 0 comments

It would be very convenient to have a set of colors from Material Design in this library which would be used in the common code.

Color palette according to https://www.materialui.co/colors

Usage example: val green = MaterialPalette.LIGHT_GREEN_500

The approximate vision of implementation:

object MaterialPalette {
    ...
    val LIGHT_GREEN_100 = Color (...)
    ...
    val LIGHT_GREEN_900 = Color (...)
    val LIGHT_GREEN_A100 = Color (...)
    ...
}

ausichenko avatar Jul 16 '20 04:07 ausichenko