yellow property

({FThemeData dark, FThemeData light}) yellow
final

The light and dark variants of the Yellow theme.

Implementation

static final yellow = (
  light: FThemeData(
    debugLabel: 'Yellow Light ThemeData',
    colors: const FColors(
      brightness: .light,
      systemOverlayStyle: .dark,
      barrier: Color(0x33000000),
      background: Color(0xFFFFFFFF),
      foreground: Color(0xFF09090B),
      primary: Color(0xFFFCC800),
      primaryForeground: Color(0xFF733E0A),
      secondary: Color(0xFFF4F4F5),
      secondaryForeground: Color(0xFF18181B),
      muted: Color(0xFFF4F4F5),
      mutedForeground: Color(0xFF71717B),
      destructive: Color(0xFFE7000B),
      destructiveForeground: Color(0xFFFAFAFA),
      error: Color(0xFFE7000B),
      errorForeground: Color(0xFFFAFAFA),
      card: Color(0xFFFFFFFF),
      border: Color(0xFFE4E4E7),
    ),
  ),
  dark: FThemeData(
    debugLabel: 'Yellow Dark ThemeData',
    colors: const FColors(
      brightness: .dark,
      systemOverlayStyle: .light,
      barrier: Color(0x7A000000),
      background: Color(0xFF09090B),
      foreground: Color(0xFFFAFAFA),
      primary: Color(0xFFEFB100),
      primaryForeground: Color(0xFF733E0A),
      secondary: Color(0xFF27272A),
      secondaryForeground: Color(0xFFFAFAFA),
      muted: Color(0xFF27272A),
      mutedForeground: Color(0xFF9F9FA9),
      destructive: Color(0xFFFF6467),
      destructiveForeground: Color(0xFFFAFAFA),
      error: Color(0xFFFF6467),
      errorForeground: Color(0xFFFAFAFA),
      card: Color(0xFF18181B),
      border: Color(0x1AFFFFFF),
    ),
  ),
);