oneDark property

ChromaTheme get oneDark

One Dark theme (Atom-inspired).

Implementation

static ChromaTheme get oneDark => ChromaTheme(
  text: Style().foreground(BasicColor('#ABB2BF')),
  error: Style().foreground(BasicColor('#E06C75')),
  comment: Style().foreground(BasicColor('#5C6370')),
  commentPreproc: Style().foreground(BasicColor('#C678DD')),
  keyword: Style().foreground(BasicColor('#C678DD')),
  keywordReserved: Style().foreground(BasicColor('#C678DD')),
  keywordNamespace: Style().foreground(BasicColor('#C678DD')),
  keywordType: Style().foreground(BasicColor('#E5C07B')),
  operator: Style().foreground(BasicColor('#56B6C2')),
  punctuation: Style().foreground(BasicColor('#ABB2BF')),
  name: Style().foreground(BasicColor('#ABB2BF')),
  nameBuiltin: Style().foreground(BasicColor('#E5C07B')),
  nameTag: Style().foreground(BasicColor('#E06C75')),
  nameAttribute: Style().foreground(BasicColor('#D19A66')),
  nameClass: Style().foreground(BasicColor('#E5C07B')),
  nameConstant: Style().foreground(BasicColor('#D19A66')),
  nameDecorator: Style().foreground(BasicColor('#61AFEF')),
  nameException: Style().foreground(BasicColor('#E06C75')),
  nameFunction: Style().foreground(BasicColor('#61AFEF')),
  nameOther: Style().foreground(BasicColor('#ABB2BF')),
  literal: Style().foreground(BasicColor('#D19A66')),
  literalNumber: Style().foreground(BasicColor('#D19A66')),
  literalDate: Style().foreground(BasicColor('#98C379')),
  literalString: Style().foreground(BasicColor('#98C379')),
  literalStringEscape: Style().foreground(BasicColor('#56B6C2')),
  genericDeleted: Style().foreground(BasicColor('#E06C75')),
  genericEmph: Style().italic(),
  genericInserted: Style().foreground(BasicColor('#98C379')),
  genericStrong: Style().bold(),
  genericSubheading: Style().foreground(BasicColor('#61AFEF')),
  background: Style().background(BasicColor('#282C34')),
);