darkTheme top-level constant

Map<String, TextStyle> const darkTheme

Implementation

const darkTheme = {
  'root':
      TextStyle(color: Color(0xffdddddd), backgroundColor: Color(0xff303030)),
  'keyword': TextStyle(color: Color(0xffffffff), fontWeight: FontWeight.w700),
  'link': TextStyle(color: Color(0xffffffff)),
  'literal': TextStyle(color: Color(0xffffffff), fontWeight: FontWeight.w700),
  'section': TextStyle(color: Color(0xffffffff), fontWeight: FontWeight.w700),
  'selector-tag':
      TextStyle(color: Color(0xffffffff), fontWeight: FontWeight.w700),
  'addition': TextStyle(color: Color(0xffdd8888)),
  'attribute': TextStyle(color: Color(0xffdd8888)),
  'builtin': TextStyle(color: Color(0xffdd8888)),
  'bullet': TextStyle(color: Color(0xffdd8888)),
  'name': TextStyle(color: Color(0xffdd8888), fontWeight: FontWeight.w700),
  'string': TextStyle(color: Color(0xffdd8888)),
  'symbol': TextStyle(color: Color(0xffdd8888)),
  'template-tag': TextStyle(color: Color(0xffdd8888)),
  'template-variable': TextStyle(color: Color(0xffdd8888)),
  'title': TextStyle(color: Color(0xffdd8888), fontWeight: FontWeight.w700),
  'type': TextStyle(color: Color(0xffdd8888), fontWeight: FontWeight.w700),
  'variable': TextStyle(color: Color(0xffdd8888)),
  'comment': TextStyle(color: Color(0xff979797)),
  'deletion': TextStyle(color: Color(0xff979797)),
  'meta': TextStyle(color: Color(0xff979797)),
  'quote': TextStyle(color: Color(0xff979797)),
  'doctag': TextStyle(fontWeight: FontWeight.w700),
  'strong': TextStyle(fontWeight: FontWeight.w700),
  'emphasis': TextStyle(fontStyle: FontStyle.italic),
};