light property

ThemeData light
final

The default light theme configuration.

Implementation

static final ThemeData light = ThemeData(
  primaryStyle: const Style(
    foreground: Colors.black,
    background: Color(0, 188, 212), // Cyan
  ),
  backgroundStyle: const Style(
    foreground: Colors.black,
    background: Color(245, 245, 245), // Off-white
  ),
  textStyle: const Style(foreground: Colors.black),
  accentStyle: const Style(
    foreground: Color(76, 175, 80), // Muted green
  ),
  warningStyle: const Style(
    foreground: Color(244, 67, 54), // Muted red
  ),
  inputStyle: const Style(
    foreground: Colors.black,
    background: Color(225, 225, 225),
  ),
  focusStyle: const Style(
    foreground: Color(33, 150, 243), // Blue
    modifiers: Modifier.bold,
  ),
  selectionStyle: const Style(
    foreground: Colors.white,
    background: Colors.black,
  ),
);