dracula property

ChromaTheme get dracula

Dracula-inspired theme.

Implementation

static ChromaTheme get dracula => ChromaTheme(
  text: Style().foreground(BasicColor('#F8F8F2')),
  error: Style().foreground(BasicColor('#FF5555')),
  comment: Style().foreground(BasicColor('#6272A4')),
  commentPreproc: Style().foreground(BasicColor('#FF79C6')),
  keyword: Style().foreground(BasicColor('#FF79C6')),
  keywordReserved: Style().foreground(BasicColor('#FF79C6')),
  keywordNamespace: Style().foreground(BasicColor('#FF79C6')),
  keywordType: Style().foreground(BasicColor('#8BE9FD')).italic(),
  operator: Style().foreground(BasicColor('#FF79C6')),
  punctuation: Style().foreground(BasicColor('#F8F8F2')),
  name: Style().foreground(BasicColor('#F8F8F2')),
  nameBuiltin: Style().foreground(BasicColor('#8BE9FD')).italic(),
  nameTag: Style().foreground(BasicColor('#FF79C6')),
  nameAttribute: Style().foreground(BasicColor('#50FA7B')),
  nameClass: Style().foreground(BasicColor('#8BE9FD')),
  nameConstant: Style().foreground(BasicColor('#BD93F9')),
  nameDecorator: Style().foreground(BasicColor('#50FA7B')),
  nameException: Style().foreground(BasicColor('#50FA7B')),
  nameFunction: Style().foreground(BasicColor('#50FA7B')),
  nameOther: Style().foreground(BasicColor('#F8F8F2')),
  literal: Style().foreground(BasicColor('#BD93F9')),
  literalNumber: Style().foreground(BasicColor('#BD93F9')),
  literalDate: Style().foreground(BasicColor('#F1FA8C')),
  literalString: Style().foreground(BasicColor('#F1FA8C')),
  literalStringEscape: Style().foreground(BasicColor('#FF79C6')),
  genericDeleted: Style().foreground(BasicColor('#FF5555')),
  genericEmph: Style().italic(),
  genericInserted: Style().foreground(BasicColor('#50FA7B')),
  genericStrong: Style().bold(),
  genericSubheading: Style().foreground(BasicColor('#6272A4')),
  background: Style().background(BasicColor('#282A36')),
);