allColors constant
All color palettes map for dynamic access
Implementation
static const Map<String, Map<int, Color>> allColors = {
'red': redColors,
'orange': orangeColors,
'amber': amberColors,
'yellow': yellowColors,
'lime': limeColors,
'green': greenColors,
'emerald': emeraldColors,
'teal': tealColors,
'cyan': cyanColors,
'sky': skyColors,
'blue': blueColors,
'indigo': indigoColors,
'violet': violetColors,
'purple': purpleColors,
'fuchsia': fuchsiaColors,
'pink': pinkColors,
'rose': roseColors,
'slate': slateColors,
'gray': grayColors,
'zinc': zincColors,
'neutral': neutralColors,
'stone': stoneColors,
};