View on GitHub

Android-flatuicolors

Android Colors for Flat UI Design

Download this project as a .zip file Download this project as a tar.gz file

android-flatUiColors

Android Colors for Flat UI Design

Colors by flatuicolors.com

  1. Overview
  2. Installation
  3. Usage

1. Overview

Editor Screenshot

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);