lightTheme constant

PulseTheme const lightTheme

Light theme with bright colors suitable for light mode

Implementation

static const PulseTheme lightTheme = PulseTheme(
  dialogBorderRadius: 12.0,
  dialogBackgroundColor: Colors.white,
  primaryColor: Color(0xFF2196F3), // Material Blue
  titleTextColor: Color(0xFF212121), // Dark gray for titles
  contentTextColor: Color(0xFF757575), // Medium gray for content
  dialogContentPadding: EdgeInsets.all(16.0),
  dialogBlurSigmaX: 2.0,
  dialogBlurSigmaY: 2.0,
  dialogBarrierColor: Color(0x80000000), // Semi-transparent black
  titleTextStyle: TextStyle(
    fontSize: 20.0,
    fontWeight: FontWeight.bold,
    color: Color(0xFF212121),
  ),
  contentTextStyle: TextStyle(
    fontSize: 14.0,
    color: Color(0xFF757575),
  ),
  buttonTextStyle: TextStyle(
    fontSize: 14.0,
    fontWeight: FontWeight.w500,
    color: Color(0xFF2196F3),
  ),
  iconSize: 24.0,
  errorIconColor: Color(0xFFF44336), // Material Red
  defectIconColor: Color(0xFFFF9800), // Material Orange
  suggestionIconColor: Color(0xFF4CAF50), // Material Green
  categoryIconColor: Color(0xFF2196F3), // Material Blue
);