StreamChatTheme.light constructor

StreamChatTheme.light()

The default light theme.

Implementation

factory StreamChatTheme.light() => const StreamChatTheme(
      brightness: StreamChatBrightness.light,
      primary: Color('#005fff'),
      primaryHover: Color('#0047cc'),
      onPrimary: Color('#ffffff'),
      background: Color('#ffffff'),
      surface: Color('#f7f7f8'),
      surfaceHover: Color('#ececed'),
      border: Color('#e3e5e8'),
      textPrimary: Color('#0d0e10'),
      textSecondary: Color('#72767e'),
      bubbleOwn: Color('#005fff'),
      bubbleOwnText: Color('#ffffff'),
      bubbleOther: Color('#f0f1f3'),
      bubbleOtherText: Color('#0d0e10'),
      online: Color('#20e070'),
      danger: Color('#ff3742'),
    );