dark constant

ThemePalette const dark

Dark theme - classic terminal colors on dark background.

Uses standard ANSI colors that work well on dark terminals.

Implementation

static const dark = ThemePalette(
  accent: Colors.cyan,
  accentBold: Colors.cyan,
  text: Colors.gray,
  textDim: Colors.gray,
  textBold: Colors.white,
  border: Colors.blue,
  success: Colors.green,
  warning: Colors.yellow,
  error: Colors.red,
  info: Colors.blue,
  highlight: Colors.purple,
);