darkOrange static method

ColorScheme darkOrange()

Implementation

static ColorScheme darkOrange() {
  return ColorScheme(
    brightness: Brightness.dark,
    background: const HSLColor.fromAHSL(1, 20.0, 0.14, 0.04).toColor(),
    foreground: const HSLColor.fromAHSL(1, 60.0, 0.09, 0.98).toColor(),
    card: const HSLColor.fromAHSL(1, 20.0, 0.14, 0.04).toColor(),
    cardForeground: const HSLColor.fromAHSL(1, 60.0, 0.09, 0.98).toColor(),
    popover: const HSLColor.fromAHSL(1, 20.0, 0.14, 0.04).toColor(),
    popoverForeground: const HSLColor.fromAHSL(1, 60.0, 0.09, 0.98).toColor(),
    primary: const HSLColor.fromAHSL(1, 20.5, 0.9, 0.48).toColor(),
    primaryForeground: const HSLColor.fromAHSL(1, 60.0, 0.09, 0.98).toColor(),
    secondary: const HSLColor.fromAHSL(1, 12.0, 0.07, 0.15).toColor(),
    secondaryForeground:
        const HSLColor.fromAHSL(1, 60.0, 0.09, 0.98).toColor(),
    muted: const HSLColor.fromAHSL(1, 12.0, 0.07, 0.15).toColor(),
    mutedForeground: const HSLColor.fromAHSL(1, 24.0, 0.05, 0.64).toColor(),
    accent: const HSLColor.fromAHSL(1, 12.0, 0.07, 0.15).toColor(),
    accentForeground: const HSLColor.fromAHSL(1, 60.0, 0.09, 0.98).toColor(),
    destructive: const HSLColor.fromAHSL(1, 0.0, 0.72, 0.51).toColor(),
    destructiveForeground:
        const HSLColor.fromAHSL(1, 60.0, 0.09, 0.98).toColor(),
    border: const HSLColor.fromAHSL(1, 12.0, 0.07, 0.15).toColor(),
    input: const HSLColor.fromAHSL(1, 12.0, 0.07, 0.15).toColor(),
    ring: const HSLColor.fromAHSL(1, 20.5, 0.9, 0.48).toColor(),
    chart1: const HSLColor.fromAHSL(1, 220.0, 0.7, 0.5).toColor(),
    chart2: const HSLColor.fromAHSL(1, 160.0, 0.6, 0.45).toColor(),
    chart3: const HSLColor.fromAHSL(1, 30.0, 0.8, 0.55).toColor(),
    chart4: const HSLColor.fromAHSL(1, 280.0, 0.65, 0.6).toColor(),
    chart5: const HSLColor.fromAHSL(1, 340.0, 0.75, 0.55).toColor(),
  );
}