monokai property

ChromaTheme get monokai

Monokai-inspired theme.

Implementation

static ChromaTheme get monokai => ChromaTheme(
  text: Style().foreground(BasicColor('#F8F8F2')),
  error: Style().foreground(BasicColor('#960050')),
  comment: Style().foreground(BasicColor('#75715E')),
  commentPreproc: Style().foreground(BasicColor('#75715E')),
  keyword: Style().foreground(BasicColor('#F92672')),
  keywordReserved: Style().foreground(BasicColor('#F92672')),
  keywordNamespace: Style().foreground(BasicColor('#F92672')),
  keywordType: Style().foreground(BasicColor('#66D9EF')).italic(),
  operator: Style().foreground(BasicColor('#F92672')),
  punctuation: Style().foreground(BasicColor('#F8F8F2')),
  name: Style().foreground(BasicColor('#F8F8F2')),
  nameBuiltin: Style().foreground(BasicColor('#66D9EF')),
  nameTag: Style().foreground(BasicColor('#F92672')),
  nameAttribute: Style().foreground(BasicColor('#A6E22E')),
  nameClass: Style().foreground(BasicColor('#A6E22E')).bold(),
  nameConstant: Style().foreground(BasicColor('#66D9EF')),
  nameDecorator: Style().foreground(BasicColor('#A6E22E')),
  nameException: Style().foreground(BasicColor('#A6E22E')),
  nameFunction: Style().foreground(BasicColor('#A6E22E')),
  nameOther: Style().foreground(BasicColor('#A6E22E')),
  literal: Style().foreground(BasicColor('#AE81FF')),
  literalNumber: Style().foreground(BasicColor('#AE81FF')),
  literalDate: Style().foreground(BasicColor('#E6DB74')),
  literalString: Style().foreground(BasicColor('#E6DB74')),
  literalStringEscape: Style().foreground(BasicColor('#AE81FF')),
  genericDeleted: Style().foreground(BasicColor('#F92672')),
  genericEmph: Style().italic(),
  genericInserted: Style().foreground(BasicColor('#A6E22E')),
  genericStrong: Style().bold(),
  genericSubheading: Style().foreground(BasicColor('#75715E')),
  background: Style().background(BasicColor('#272822')),
);