gruvboxDark property

ChromaTheme get gruvboxDark

Gruvbox Dark theme.

Implementation

static ChromaTheme get gruvboxDark => ChromaTheme(
  text: Style().foreground(BasicColor('#EBDBB2')),
  error: Style().foreground(BasicColor('#FB4934')),
  comment: Style().foreground(BasicColor('#928374')),
  commentPreproc: Style().foreground(BasicColor('#8EC07C')),
  keyword: Style().foreground(BasicColor('#FB4934')),
  keywordReserved: Style().foreground(BasicColor('#FB4934')),
  keywordNamespace: Style().foreground(BasicColor('#FB4934')),
  keywordType: Style().foreground(BasicColor('#FABD2F')),
  operator: Style().foreground(BasicColor('#FE8019')),
  punctuation: Style().foreground(BasicColor('#EBDBB2')),
  name: Style().foreground(BasicColor('#EBDBB2')),
  nameBuiltin: Style().foreground(BasicColor('#FABD2F')),
  nameTag: Style().foreground(BasicColor('#8EC07C')),
  nameAttribute: Style().foreground(BasicColor('#B8BB26')),
  nameClass: Style().foreground(BasicColor('#FABD2F')),
  nameConstant: Style().foreground(BasicColor('#D3869B')),
  nameDecorator: Style().foreground(BasicColor('#8EC07C')),
  nameException: Style().foreground(BasicColor('#FB4934')),
  nameFunction: Style().foreground(BasicColor('#B8BB26')),
  nameOther: Style().foreground(BasicColor('#EBDBB2')),
  literal: Style().foreground(BasicColor('#D3869B')),
  literalNumber: Style().foreground(BasicColor('#D3869B')),
  literalDate: Style().foreground(BasicColor('#FABD2F')),
  literalString: Style().foreground(BasicColor('#B8BB26')),
  literalStringEscape: Style().foreground(BasicColor('#FE8019')),
  genericDeleted: Style().foreground(BasicColor('#FB4934')),
  genericEmph: Style().italic(),
  genericInserted: Style().foreground(BasicColor('#B8BB26')),
  genericStrong: Style().bold(),
  genericSubheading: Style().foreground(BasicColor('#83A598')),
  background: Style().background(BasicColor('#282828')),
);