light property

ChromaTheme get light

Light theme for light terminal backgrounds.

Implementation

static ChromaTheme get light => ChromaTheme(
  text: Style().foreground(BasicColor('#333333')),
  error: Style()
      .foreground(BasicColor('#FFFFFF'))
      .background(BasicColor('#CC0000')),
  comment: Style().foreground(BasicColor('#888888')),
  commentPreproc: Style().foreground(BasicColor('#CC6600')),
  keyword: Style().foreground(BasicColor('#0066CC')),
  keywordReserved: Style().foreground(BasicColor('#CC0099')),
  keywordNamespace: Style().foreground(BasicColor('#CC3366')),
  keywordType: Style().foreground(BasicColor('#5533CC')),
  operator: Style().foreground(BasicColor('#CC4444')),
  punctuation: Style().foreground(BasicColor('#666600')),
  name: Style().foreground(BasicColor('#333333')),
  nameBuiltin: Style().foreground(BasicColor('#CC6699')),
  nameTag: Style().foreground(BasicColor('#9933CC')),
  nameAttribute: Style().foreground(BasicColor('#5555CC')),
  nameClass: Style().foreground(BasicColor('#000000')).underline().bold(),
  nameConstant: Style().foreground(BasicColor('#333333')),
  nameDecorator: Style().foreground(BasicColor('#999900')),
  nameException: Style().foreground(BasicColor('#CC3366')),
  nameFunction: Style().foreground(BasicColor('#009966')),
  nameOther: Style().foreground(BasicColor('#333333')),
  literal: Style().foreground(BasicColor('#333333')),
  literalNumber: Style().foreground(BasicColor('#009999')),
  literalDate: Style().foreground(BasicColor('#333333')),
  literalString: Style().foreground(BasicColor('#996633')),
  literalStringEscape: Style().foreground(BasicColor('#339966')),
  genericDeleted: Style().foreground(BasicColor('#CC0000')),
  genericEmph: Style().italic(),
  genericInserted: Style().foreground(BasicColor('#009900')),
  genericStrong: Style().bold(),
  genericSubheading: Style().foreground(BasicColor('#666666')),
  background: Style().background(BasicColor('#F5F5F5')),
);