nord property

ChromaTheme get nord

Nord theme (dark, inspired by arctic colors).

Implementation

static ChromaTheme get nord => ChromaTheme(
  text: Style().foreground(BasicColor('#D8DEE9')),
  error: Style().foreground(BasicColor('#BF616A')),
  comment: Style().foreground(BasicColor('#616E88')),
  commentPreproc: Style().foreground(BasicColor('#5E81AC')),
  keyword: Style().foreground(BasicColor('#81A1C1')),
  keywordReserved: Style().foreground(BasicColor('#81A1C1')),
  keywordNamespace: Style().foreground(BasicColor('#81A1C1')),
  keywordType: Style().foreground(BasicColor('#8FBCBB')),
  operator: Style().foreground(BasicColor('#81A1C1')),
  punctuation: Style().foreground(BasicColor('#ECEFF4')),
  name: Style().foreground(BasicColor('#D8DEE9')),
  nameBuiltin: Style().foreground(BasicColor('#88C0D0')),
  nameTag: Style().foreground(BasicColor('#81A1C1')),
  nameAttribute: Style().foreground(BasicColor('#8FBCBB')),
  nameClass: Style().foreground(BasicColor('#8FBCBB')),
  nameConstant: Style().foreground(BasicColor('#D8DEE9')),
  nameDecorator: Style().foreground(BasicColor('#D08770')),
  nameException: Style().foreground(BasicColor('#BF616A')),
  nameFunction: Style().foreground(BasicColor('#88C0D0')),
  nameOther: Style().foreground(BasicColor('#D8DEE9')),
  literal: Style().foreground(BasicColor('#B48EAD')),
  literalNumber: Style().foreground(BasicColor('#B48EAD')),
  literalDate: Style().foreground(BasicColor('#EBCB8B')),
  literalString: Style().foreground(BasicColor('#A3BE8C')),
  literalStringEscape: Style().foreground(BasicColor('#EBCB8B')),
  genericDeleted: Style().foreground(BasicColor('#BF616A')),
  genericEmph: Style().italic(),
  genericInserted: Style().foreground(BasicColor('#A3BE8C')),
  genericStrong: Style().bold(),
  genericSubheading: Style().foreground(BasicColor('#88C0D0')),
  background: Style().background(BasicColor('#2E3440')),
);