Commit baa1e7ee authored by Collin Jackson's avatar Collin Jackson

Provide a list of Material design primary and accent color swatches

parent dac1d4a1
......@@ -384,4 +384,47 @@ class Colors {
800: const Color(0xFF37474F),
900: const Color(0xFF263238),
};
/// All Material design primary color swatches (except grey)
static const List<Map<int, Color>> primaries = const <Map<int, Color>>[
red,
pink,
purple,
deepPurple,
indigo,
blue,
lightBlue,
cyan,
teal,
green,
lightGreen,
lime,
yellow,
amber,
orange,
deepOrange,
brown,
// grey intentionally omitted
blueGrey,
];
/// All Material design accent color swatches
static const List<Map<int, Color>> accents = const <Map<int, Color>>[
redAccent,
pinkAccent,
purpleAccent,
deepPurpleAccent,
indigoAccent,
blueAccent,
lightBlueAccent,
cyanAccent,
tealAccent,
greenAccent,
lightGreenAccent,
limeAccent,
yellowAccent,
amberAccent,
orangeAccent,
deepOrangeAccent,
];
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment