Expand description

Basic predefined colors.

Modules

A full color palette derived from the Material Design 2014 Color Palette. Colors are chosen to go well with each other, and each color is available in several tints, ranging from 50 (very light) to 900 (very dark). A tint of 500 is considered “standard”. Color’s whose tint starts with an ‘A’ (for example RED_A400) are accent colors and are more saturated than their standard counterparts.

Macros

Defines and names a color based on its R, G, B, A values.

Constants

Black ( rgb = (0, 0, 0))

Blue ( rgb = (0, 0, 255))

Cyan ( rgb = (0, 255, 255))

Green ( rgb = (0, 255, 0))

Magenta ( rgb = (255, 0, 255))

Red ( rgb = (255, 0, 0))

Transparent ( rgba = (0, 0, 0, 0.0))

White ( rgb = (255, 255, 255))

Yellow ( rgb = (255, 255, 0))