github property

ChromaTheme get github

GitHub-inspired theme (light).

Implementation

static ChromaTheme get github => ChromaTheme(
  text: Style().foreground(BasicColor('#24292e')),
  error: Style().foreground(BasicColor('#cb2431')),
  comment: Style().foreground(BasicColor('#6a737d')),
  commentPreproc: Style().foreground(BasicColor('#6a737d')),
  keyword: Style().foreground(BasicColor('#d73a49')),
  keywordReserved: Style().foreground(BasicColor('#d73a49')),
  keywordNamespace: Style().foreground(BasicColor('#d73a49')),
  keywordType: Style().foreground(BasicColor('#d73a49')),
  operator: Style().foreground(BasicColor('#d73a49')),
  punctuation: Style().foreground(BasicColor('#24292e')),
  name: Style().foreground(BasicColor('#24292e')),
  nameBuiltin: Style().foreground(BasicColor('#005cc5')),
  nameTag: Style().foreground(BasicColor('#22863a')),
  nameAttribute: Style().foreground(BasicColor('#6f42c1')),
  nameClass: Style().foreground(BasicColor('#6f42c1')),
  nameConstant: Style().foreground(BasicColor('#005cc5')),
  nameDecorator: Style().foreground(BasicColor('#6f42c1')),
  nameException: Style().foreground(BasicColor('#005cc5')),
  nameFunction: Style().foreground(BasicColor('#6f42c1')),
  nameOther: Style().foreground(BasicColor('#005cc5')),
  literal: Style().foreground(BasicColor('#005cc5')),
  literalNumber: Style().foreground(BasicColor('#005cc5')),
  literalDate: Style().foreground(BasicColor('#032f62')),
  literalString: Style().foreground(BasicColor('#032f62')),
  literalStringEscape: Style().foreground(BasicColor('#005cc5')),
  genericDeleted: Style()
      .foreground(BasicColor('#cb2431'))
      .background(BasicColor('#ffeef0')),
  genericEmph: Style().italic(),
  genericInserted: Style()
      .foreground(BasicColor('#22863a'))
      .background(BasicColor('#f0fff4')),
  genericStrong: Style().bold(),
  genericSubheading: Style().foreground(BasicColor('#005cc5')),
);