githubLight constant

CodeHighlightTheme const githubLight

GitHub "light" code theme (background #F6F8FA).

Implementation

static const CodeHighlightTheme githubLight = _GithubTheme(
  background: Color(0xFFF6F8FA),
  foreground: Color(0xFF24292F),
  comment: Color(0xFF6E7781),
  keyword: Color(0xFFCF222E),
  string: Color(0xFF0A3069),
  number: Color(0xFF0550AE),
  function: Color(0xFF8250DF),
  className: Color(0xFF953800),
  variable: Color(0xFF0550AE),
  punctuation: Color(0xFF24292F),
);