red property

({FThemeData dark, FThemeData light}) red
final

The light and dark variants of the Red theme.

Implementation

static final red = (
  light: FThemeData.inherit(
    colorScheme: const FColorScheme(
      brightness: Brightness.light,
      background: Color(0xFFFFFFFF),
      foreground: Color(0xFF09090B),
      primary: Color(0xFFDC2626),
      primaryForeground: Color(0xFFFEF2F2),
      secondary: Color(0xFFF5F5F5),
      secondaryForeground: Color(0xFF171717),
      muted: Color(0xFFF5F5F5),
      mutedForeground: Color(0xFF71717A),
      destructive: Color(0xFFEF4444),
      destructiveForeground: Color(0xFFFAFAFA),
      error: Color(0xFFEF4444),
      errorForeground: Color(0xFFFAFAFA),
      border: Color(0xFFE5E5E5),
    ),
  ),
  dark: FThemeData.inherit(
    colorScheme: const FColorScheme(
      brightness: Brightness.dark,
      background: Color(0xFF0A0A0A),
      foreground: Color(0xFFFAFAFA),
      primary: Color(0xFFDC2626),
      primaryForeground: Color(0xFFFEF2F2),
      secondary: Color(0xFF262626),
      secondaryForeground: Color(0xFFFAFAFA),
      muted: Color(0xFF262626),
      mutedForeground: Color(0xFFA3A3A3),
      destructive: Color(0xFF7F1D1D),
      destructiveForeground: Color(0xFFFEF2F2),
      error: Color(0xFF7F1D1D),
      errorForeground: Color(0xFFFEF2F2),
      border: Color(0xFF262626),
    ),
  ),
);