AIChatTheme.dark constructor
A modern dark theme for AI chat.
Implementation
factory AIChatTheme.dark() {
return const AIChatTheme(
backgroundColor: Color(0xFF1A1A2E),
userBubbleColor: Color(0xFF0F3460),
assistantBubbleColor: Color(0xFF16213E),
userTextStyle: TextStyle(color: Colors.white, fontSize: 15),
assistantTextStyle: TextStyle(color: Color(0xFFE0E0E0), fontSize: 15),
sendButtonColor: Color(0xFF533483),
);
}