purebasicTheme top-level constant

Map<String, TextStyle> const purebasicTheme

Implementation

const purebasicTheme = {
  'root':
      TextStyle(backgroundColor: Color(0xffFFFFDF), color: Color(0xff000000)),
  'type': TextStyle(color: Color(0xff000000)),
  'function': TextStyle(color: Color(0xff000000)),
  'name': TextStyle(color: Color(0xff000000), fontWeight: FontWeight.bold),
  'number': TextStyle(color: Color(0xff000000)),
  'attr': TextStyle(color: Color(0xff000000)),
  'params': TextStyle(color: Color(0xff000000)),
  'subst': TextStyle(color: Color(0xff000000)),
  'comment': TextStyle(color: Color(0xff00AAAA)),
  'regexp': TextStyle(color: Color(0xff00AAAA)),
  'section': TextStyle(color: Color(0xff00AAAA)),
  'selector-pseudo': TextStyle(color: Color(0xff00AAAA)),
  'addition': TextStyle(color: Color(0xff00AAAA)),
  'title': TextStyle(color: Color(0xff006666)),
  'tag': TextStyle(color: Color(0xff006666)),
  'variable': TextStyle(color: Color(0xff006666)),
  'code': TextStyle(color: Color(0xff006666)),
  'keyword': TextStyle(color: Color(0xff006666), fontWeight: FontWeight.bold),
  'class': TextStyle(color: Color(0xff006666), fontWeight: FontWeight.bold),
  'meta-keyword':
      TextStyle(color: Color(0xff006666), fontWeight: FontWeight.bold),
  'selector-class':
      TextStyle(color: Color(0xff006666), fontWeight: FontWeight.bold),
  'built_in': TextStyle(color: Color(0xff006666), fontWeight: FontWeight.bold),
  'builtin-name':
      TextStyle(color: Color(0xff006666), fontWeight: FontWeight.bold),
  'string': TextStyle(color: Color(0xff0080FF)),
  'selector-attr': TextStyle(color: Color(0xff0080FF)),
  'symbol': TextStyle(color: Color(0xff924B72)),
  'link': TextStyle(color: Color(0xff924B72)),
  'deletion': TextStyle(color: Color(0xff924B72)),
  'attribute': TextStyle(color: Color(0xff924B72)),
  'meta': TextStyle(color: Color(0xff924B72), fontWeight: FontWeight.bold),
  'literal': TextStyle(color: Color(0xff924B72), fontWeight: FontWeight.bold),
  'selector-id':
      TextStyle(color: Color(0xff924B72), fontWeight: FontWeight.bold),
  'strong': TextStyle(fontWeight: FontWeight.bold),
  'emphasis': TextStyle(fontStyle: FontStyle.italic),
};