githubGistTheme top-level constant

Map<String, TextStyle> const githubGistTheme

Github Gist theme for syntax highlighting.

Implementation

const githubGistTheme = {
  'root': TextStyle(
    backgroundColor: Color(0xffffffff),
    color: Color(0xff333333),
  ),
  'comment': TextStyle(color: Color(0xff969896)),
  'meta': TextStyle(color: Color(0xff969896)),
  'variable': TextStyle(color: Color(0xffdf5000)),
  'template-variable': TextStyle(color: Color(0xffdf5000)),
  'strong': TextStyle(color: Color(0xffdf5000)),
  'emphasis': TextStyle(color: Color(0xffdf5000)),
  'quote': TextStyle(color: Color(0xffdf5000)),
  'keyword': TextStyle(color: Color(0xffd73a49)),
  'selector-tag': TextStyle(color: Color(0xffd73a49)),
  'type': TextStyle(color: Color(0xffd73a49)),
  'literal': TextStyle(color: Color(0xff0086b3)),
  'symbol': TextStyle(color: Color(0xff0086b3)),
  'bullet': TextStyle(color: Color(0xff0086b3)),
  'attribute': TextStyle(color: Color(0xff0086b3)),
  'section': TextStyle(color: Color(0xff63a35c)),
  'name': TextStyle(color: Color(0xff63a35c)),
  'tag': TextStyle(color: Color(0xff333333)),
  'title': TextStyle(color: Color(0xff6f42c1)),
  'attr': TextStyle(color: Color(0xff6f42c1)),
  'selector-id': TextStyle(color: Color(0xff6f42c1)),
  'selector-class': TextStyle(color: Color(0xff6f42c1)),
  'selector-attr': TextStyle(color: Color(0xff6f42c1)),
  'selector-pseudo': TextStyle(color: Color(0xff6f42c1)),
  'addition': TextStyle(
    color: Color(0xff55a532),
    backgroundColor: Color(0xffeaffea),
  ),
  'deletion': TextStyle(
    color: Color(0xffbd2c00),
    backgroundColor: Color(0xffffecec),
  ),
  'number': TextStyle(color: Color(0xff005cc5)),
  'string': TextStyle(color: Color(0xff032f62)),
};