lightTheme property

ThemeData get lightTheme

Implementation

static ThemeData get lightTheme =>
    ThemeData.light(useMaterial3: true).copyWith(
      extensions: <ThemeExtension<dynamic>>[
        const CustomThemeExtension(
          chatBackground: Color(0xFFF7F9FC),
          messageBubbleColor: Colors.white,
          userBubbleColor: Color(0xFFEDF6FF),
          messageTextColor: Color(0xFF262A30),
          inputBackgroundColor: Colors.white,
          inputBorderColor: Color(0xFFE6EAF0),
          inputTextColor: Color(0xFF262A30),
          hintTextColor: Color(0xFF8E97A5),
          backToBottomButtonColor: Color(0xFF0A84FF),
          sendButtonColor: Color(0xFF0A84FF),
          sendButtonIconColor: Colors.white,
        ),
      ],
    );