grayscaleTheme top-level constant

Map<String, TextStyle> const grayscaleTheme

Implementation

const grayscaleTheme = {
  'root':
      TextStyle(color: Color(0xff333333), backgroundColor: Color(0xffffffff)),
  'comment': TextStyle(color: Color(0xff777777), fontStyle: FontStyle.italic),
  'quote': TextStyle(color: Color(0xff777777), fontStyle: FontStyle.italic),
  'keyword': TextStyle(color: Color(0xff333333), fontWeight: FontWeight.bold),
  'selector-tag':
      TextStyle(color: Color(0xff333333), fontWeight: FontWeight.bold),
  'subst': TextStyle(color: Color(0xff333333), fontWeight: FontWeight.normal),
  'number': TextStyle(color: Color(0xff777777)),
  'literal': TextStyle(color: Color(0xff777777)),
  'string': TextStyle(color: Color(0xff333333)),
  'doctag': TextStyle(color: Color(0xff333333)),
  'formula': TextStyle(color: Color(0xff333333)),
  'title': TextStyle(color: Color(0xff000000), fontWeight: FontWeight.bold),
  'section': TextStyle(color: Color(0xff000000), fontWeight: FontWeight.bold),
  'selector-id':
      TextStyle(color: Color(0xff000000), fontWeight: FontWeight.bold),
  'type': TextStyle(color: Color(0xff333333), fontWeight: FontWeight.bold),
  'name': TextStyle(color: Color(0xff333333), fontWeight: FontWeight.bold),
  'tag': TextStyle(color: Color(0xff333333)),
  'regexp': TextStyle(color: Color(0xff333333)),
  'symbol': TextStyle(color: Color(0xff000000)),
  'bullet': TextStyle(color: Color(0xff000000)),
  'link': TextStyle(color: Color(0xff000000)),
  'built_in': TextStyle(color: Color(0xff000000)),
  'builtin-name': TextStyle(color: Color(0xff000000)),
  'meta': TextStyle(color: Color(0xff999999), fontWeight: FontWeight.bold),
  'deletion': TextStyle(color: Color(0xffffffff)),
  'addition': TextStyle(color: Color(0xff000000)),
  'emphasis': TextStyle(fontStyle: FontStyle.italic),
  'strong': TextStyle(fontWeight: FontWeight.bold),
};