solarizedLight property

ChromaTheme get solarizedLight

Solarized Light theme.

Implementation

static ChromaTheme get solarizedLight => ChromaTheme(
  text: Style().foreground(BasicColor('#657b83')),
  error: Style().foreground(BasicColor('#dc322f')),
  comment: Style().foreground(BasicColor('#93a1a1')),
  commentPreproc: Style().foreground(BasicColor('#cb4b16')),
  keyword: Style().foreground(BasicColor('#859900')),
  keywordReserved: Style().foreground(BasicColor('#cb4b16')),
  keywordNamespace: Style().foreground(BasicColor('#cb4b16')),
  keywordType: Style().foreground(BasicColor('#b58900')),
  operator: Style().foreground(BasicColor('#859900')),
  punctuation: Style().foreground(BasicColor('#657b83')),
  name: Style().foreground(BasicColor('#657b83')),
  nameBuiltin: Style().foreground(BasicColor('#268bd2')),
  nameTag: Style().foreground(BasicColor('#268bd2')),
  nameAttribute: Style().foreground(BasicColor('#657b83')),
  nameClass: Style().foreground(BasicColor('#268bd2')),
  nameConstant: Style().foreground(BasicColor('#2aa198')),
  nameDecorator: Style().foreground(BasicColor('#cb4b16')),
  nameException: Style().foreground(BasicColor('#cb4b16')),
  nameFunction: Style().foreground(BasicColor('#268bd2')),
  nameOther: Style().foreground(BasicColor('#657b83')),
  literal: Style().foreground(BasicColor('#2aa198')),
  literalNumber: Style().foreground(BasicColor('#2aa198')),
  literalDate: Style().foreground(BasicColor('#2aa198')),
  literalString: Style().foreground(BasicColor('#2aa198')),
  literalStringEscape: Style().foreground(BasicColor('#cb4b16')),
  genericDeleted: Style().foreground(BasicColor('#dc322f')),
  genericEmph: Style().italic(),
  genericInserted: Style().foreground(BasicColor('#859900')),
  genericStrong: Style().bold(),
  genericSubheading: Style().foreground(BasicColor('#268bd2')),
  background: Style().background(BasicColor('#fdf6e3')),
);