green property

({FThemeData dark, FThemeData light}) green
final

The light and dark variants of the Green theme.

Implementation

static final green = (
  light: FThemeData.inherit(
    colorScheme: const FColorScheme(
      brightness: Brightness.light,
      background: Color(0xFFFFFFFF),
      foreground: Color(0xFF09090B),
      primary: Color(0xFF16A34A),
      primaryForeground: Color(0xFFFFF1F2),
      secondary: Color(0xFFF4F4F5),
      secondaryForeground: Color(0xFF18181B),
      muted: Color(0xFFF4F4F5),
      mutedForeground: Color(0xFF71717A),
      destructive: Color(0xFFEF4444),
      destructiveForeground: Color(0xFFFAFAFA),
      error: Color(0xFFEF4444),
      errorForeground: Color(0xFFFAFAFA),
      border: Color(0xFFE4E4E7),
    ),
  ),
  dark: FThemeData.inherit(
    colorScheme: const FColorScheme(
      brightness: Brightness.dark,
      background: Color(0xFF0C0A09),
      foreground: Color(0xFFF2F2F2),
      primary: Color(0xFF22C55E),
      primaryForeground: Color(0xFF052E16),
      secondary: Color(0xFF27272A),
      secondaryForeground: Color(0xFFFAFAFA),
      muted: Color(0xFF262626),
      mutedForeground: Color(0xFFA1A1AA),
      destructive: Color(0xFF7F1D1D),
      destructiveForeground: Color(0xFFFEF2F2),
      error: Color(0xFF7F1D1D),
      errorForeground: Color(0xFFFEF2F2),
      border: Color(0xFF27272A),
    ),
  ),
);