gruvboxLight property

ChromaTheme get gruvboxLight

Gruvbox Light theme.

Implementation

static ChromaTheme get gruvboxLight => ChromaTheme(
  text: Style().foreground(BasicColor('#3C3836')),
  error: Style().foreground(BasicColor('#9D0006')),
  comment: Style().foreground(BasicColor('#928374')),
  commentPreproc: Style().foreground(BasicColor('#427B58')),
  keyword: Style().foreground(BasicColor('#9D0006')),
  keywordReserved: Style().foreground(BasicColor('#9D0006')),
  keywordNamespace: Style().foreground(BasicColor('#9D0006')),
  keywordType: Style().foreground(BasicColor('#B57614')),
  operator: Style().foreground(BasicColor('#AF3A03')),
  punctuation: Style().foreground(BasicColor('#3C3836')),
  name: Style().foreground(BasicColor('#3C3836')),
  nameBuiltin: Style().foreground(BasicColor('#B57614')),
  nameTag: Style().foreground(BasicColor('#427B58')),
  nameAttribute: Style().foreground(BasicColor('#79740E')),
  nameClass: Style().foreground(BasicColor('#B57614')),
  nameConstant: Style().foreground(BasicColor('#8F3F71')),
  nameDecorator: Style().foreground(BasicColor('#427B58')),
  nameException: Style().foreground(BasicColor('#9D0006')),
  nameFunction: Style().foreground(BasicColor('#79740E')),
  nameOther: Style().foreground(BasicColor('#3C3836')),
  literal: Style().foreground(BasicColor('#8F3F71')),
  literalNumber: Style().foreground(BasicColor('#8F3F71')),
  literalDate: Style().foreground(BasicColor('#B57614')),
  literalString: Style().foreground(BasicColor('#79740E')),
  literalStringEscape: Style().foreground(BasicColor('#AF3A03')),
  genericDeleted: Style().foreground(BasicColor('#9D0006')),
  genericEmph: Style().italic(),
  genericInserted: Style().foreground(BasicColor('#79740E')),
  genericStrong: Style().bold(),
  genericSubheading: Style().foreground(BasicColor('#076678')),
  background: Style().background(BasicColor('#FBF1C7')),
);