android-flatUiColors
Android Colors for Flat UI Design
Colors by flatuicolors.com
- Overview
- Installation
- Usage
1. Overview
2. Installation
To adopt the colors, just copy the colorsFlatUi.xml into your res/values/ directory or paste the content of the colorsFlatUi.xml into your colors.xml file.
3. Usage
Now, you can use the colors in your xml layouts:
@color/flatui_midnight_blue
or in java like this:
Color midnightBlue = getApplicationContext().getResources().getColor(R.id.flatui_midnight_blue)
MyTextView.setTextColor(midnightBlue);