Implementation
static ColorScheme lightGreen() {
return ColorScheme(
brightness: Brightness.light,
background: const HSLColor.fromAHSL(1, 0.0, 0.0, 1.0).toColor(),
foreground: const HSLColor.fromAHSL(1, 240.0, 0.1, 0.04).toColor(),
card: const HSLColor.fromAHSL(1, 0.0, 0.0, 1.0).toColor(),
cardForeground: const HSLColor.fromAHSL(1, 240.0, 0.1, 0.04).toColor(),
popover: const HSLColor.fromAHSL(1, 0.0, 0.0, 1.0).toColor(),
popoverForeground: const HSLColor.fromAHSL(1, 240.0, 0.1, 0.04).toColor(),
primary: const HSLColor.fromAHSL(1, 142.1, 0.76, 0.36).toColor(),
primaryForeground: const HSLColor.fromAHSL(1, 355.7, 1.0, 0.97).toColor(),
secondary: const HSLColor.fromAHSL(1, 240.0, 0.05, 0.96).toColor(),
secondaryForeground: const HSLColor.fromAHSL(1, 240.0, 0.06, 0.1).toColor(),
muted: const HSLColor.fromAHSL(1, 240.0, 0.05, 0.96).toColor(),
mutedForeground: const HSLColor.fromAHSL(1, 240.0, 0.04, 0.46).toColor(),
accent: const HSLColor.fromAHSL(1, 240.0, 0.05, 0.96).toColor(),
accentForeground: const HSLColor.fromAHSL(1, 240.0, 0.06, 0.1).toColor(),
destructive: const HSLColor.fromAHSL(1, 0.0, 0.84, 0.6).toColor(),
destructiveForeground: const HSLColor.fromAHSL(1, 0.0, 0.0, 0.98).toColor(),
border: const HSLColor.fromAHSL(1, 240.0, 0.06, 0.9).toColor(),
input: const HSLColor.fromAHSL(1, 240.0, 0.06, 0.9).toColor(),
ring: const HSLColor.fromAHSL(1, 142.1, 0.76, 0.36).toColor(),
chart1: const HSLColor.fromAHSL(1, 12.0, 0.76, 0.61).toColor(),
chart2: const HSLColor.fromAHSL(1, 173.0, 0.58, 0.39).toColor(),
chart3: const HSLColor.fromAHSL(1, 197.0, 0.37, 0.24).toColor(),
chart4: const HSLColor.fromAHSL(1, 43.0, 0.74, 0.66).toColor(),
chart5: const HSLColor.fromAHSL(1, 27.0, 0.87, 0.67).toColor(),
);
}