darkThemeInCodeBlock top-level constant

Map<String, TextStyle> const darkThemeInCodeBlock

Implementation

const darkThemeInCodeBlock = {
  'root': TextStyle(
    backgroundColor: Color(0xff000000),
    color: Color(0xfff8f8f8),
  ),
  'comment': TextStyle(
    color: Color(0xffaeaeae),
    fontStyle: FontStyle.italic,
  ),
  'quote': TextStyle(
    color: Color(0xffaeaeae),
    fontStyle: FontStyle.italic,
  ),
  'keyword': TextStyle(color: Color(0xffe28964)),
  'selector-tag': TextStyle(color: Color(0xffe28964)),
  'type': TextStyle(color: Color(0xffe28964)),
  'string': TextStyle(color: Color(0xff65b042)),
  'subst': TextStyle(color: Color(0xffdaefa3)),
  'regexp': TextStyle(color: Color(0xffe9c062)),
  'link': TextStyle(color: Color(0xffe9c062)),
  'title': TextStyle(color: Color(0xff89bdff)),
  'section': TextStyle(color: Color(0xff89bdff)),
  'tag': TextStyle(color: Color(0xff89bdff)),
  'name': TextStyle(color: Color(0xff89bdff)),
  'symbol': TextStyle(color: Color(0xff3387cc)),
  'bullet': TextStyle(color: Color(0xff3387cc)),
  'number': TextStyle(color: Color(0xff3387cc)),
  'params': TextStyle(color: Color(0xff3e87e3)),
  'variable': TextStyle(color: Color(0xff3e87e3)),
  'template-variable': TextStyle(color: Color(0xff3e87e3)),
  'attribute': TextStyle(color: Color(0xffcda869)),
  'meta': TextStyle(color: Color(0xff8996a8)),
  'formula': TextStyle(
    backgroundColor: Color(0xff0e2231),
    color: Color(0xfff8f8f8),
    fontStyle: FontStyle.italic,
  ),
  'addition': TextStyle(
    backgroundColor: Color(0xff253b22),
    color: Color(0xfff8f8f8),
  ),
  'deletion': TextStyle(
    backgroundColor: Color(0xff420e09),
    color: Color(0xfff8f8f8),
  ),
  'selector-class': TextStyle(color: Color(0xff9b703f)),
  'selector-id': TextStyle(color: Color(0xff8b98ab)),
  'emphasis': TextStyle(fontStyle: FontStyle.italic),
  'strong': TextStyle(fontWeight: FontWeight.bold),
};