oneLight property

ChromaTheme get oneLight

One Light theme (Atom-inspired).

Implementation

static ChromaTheme get oneLight => ChromaTheme(
  text: Style().foreground(BasicColor('#383A42')),
  error: Style().foreground(BasicColor('#E45649')),
  comment: Style().foreground(BasicColor('#A0A1A7')),
  commentPreproc: Style().foreground(BasicColor('#A626A4')),
  keyword: Style().foreground(BasicColor('#A626A4')),
  keywordReserved: Style().foreground(BasicColor('#A626A4')),
  keywordNamespace: Style().foreground(BasicColor('#A626A4')),
  keywordType: Style().foreground(BasicColor('#C18401')),
  operator: Style().foreground(BasicColor('#0184BC')),
  punctuation: Style().foreground(BasicColor('#383A42')),
  name: Style().foreground(BasicColor('#383A42')),
  nameBuiltin: Style().foreground(BasicColor('#C18401')),
  nameTag: Style().foreground(BasicColor('#E45649')),
  nameAttribute: Style().foreground(BasicColor('#986801')),
  nameClass: Style().foreground(BasicColor('#C18401')),
  nameConstant: Style().foreground(BasicColor('#986801')),
  nameDecorator: Style().foreground(BasicColor('#4078F2')),
  nameException: Style().foreground(BasicColor('#E45649')),
  nameFunction: Style().foreground(BasicColor('#4078F2')),
  nameOther: Style().foreground(BasicColor('#383A42')),
  literal: Style().foreground(BasicColor('#986801')),
  literalNumber: Style().foreground(BasicColor('#986801')),
  literalDate: Style().foreground(BasicColor('#50A14F')),
  literalString: Style().foreground(BasicColor('#50A14F')),
  literalStringEscape: Style().foreground(BasicColor('#0184BC')),
  genericDeleted: Style().foreground(BasicColor('#E45649')),
  genericEmph: Style().italic(),
  genericInserted: Style().foreground(BasicColor('#50A14F')),
  genericStrong: Style().bold(),
  genericSubheading: Style().foreground(BasicColor('#4078F2')),
  background: Style().background(BasicColor('#FAFAFA')),
);