asceticTheme top-level constant

Map<String, TextStyle> const asceticTheme

Implementation

const asceticTheme = {
  'root':
      TextStyle(backgroundColor: Color(0xffffffff), color: Color(0xff000000)),
  'string': TextStyle(color: Color(0xff888888)),
  'variable': TextStyle(color: Color(0xff888888)),
  'template-variable': TextStyle(color: Color(0xff888888)),
  'symbol': TextStyle(color: Color(0xff888888)),
  'bullet': TextStyle(color: Color(0xff888888)),
  'section': TextStyle(color: Color(0xff888888), fontWeight: FontWeight.bold),
  'addition': TextStyle(color: Color(0xff888888)),
  'attribute': TextStyle(color: Color(0xff888888)),
  'link': TextStyle(color: Color(0xff888888)),
  'comment': TextStyle(color: Color(0xffcccccc)),
  'quote': TextStyle(color: Color(0xffcccccc)),
  'meta': TextStyle(color: Color(0xffcccccc)),
  'deletion': TextStyle(color: Color(0xffcccccc)),
  'keyword': TextStyle(fontWeight: FontWeight.bold),
  'selector-tag': TextStyle(fontWeight: FontWeight.bold),
  'name': TextStyle(fontWeight: FontWeight.bold),
  'type': TextStyle(fontWeight: FontWeight.bold),
  'strong': TextStyle(fontWeight: FontWeight.bold),
  'emphasis': TextStyle(fontStyle: FontStyle.italic),
};