I'm trying to (properly) implement Material Theming in my app so that it can support light and dark themes. One screen of my app requires additional colors beyond the Material primary, secondary, etc. I was looking at the Rally sample app as a model because it uses extra colors to color code the account types. However, it uses `Color`s, which appears to go against the advice to use
MaterialTheme.colors
instead. What is the recommended way to declare additional colors that are sensitive to theme changes?
(References in 🧵.)