backgroundColors top-level constant
Implementation
const Map<String, BackgroundColors> backgroundColors = {
"purple": BackgroundColors(
gradientStart: Color.fromARGB(255, 115, 80, 243),
gradientEnd: Color.fromARGB(255, 209, 169, 165),
sunburstColor: Color.fromARGB(25, 236, 255, 138),
),
"blue": BackgroundColors(
gradientStart: Color.fromARGB(255, 23, 144, 215),
gradientEnd: Color.fromARGB(255, 165, 209, 196),
sunburstColor: Color.fromARGB(25, 236, 255, 138),
),
"red": BackgroundColors(
gradientStart: Color.fromARGB(255, 233, 68, 68),
gradientEnd: Color.fromARGB(255, 223, 179, 148),
sunburstColor: Color.fromARGB(25, 236, 255, 138),
),
};