defaults constant

HelpStyles const defaults

Beautiful defaults using the Catppuccin Mocha palette.

Implementation

static const HelpStyles defaults = HelpStyles(
  title: Style(
    foregroundRgb: RgbColor(203, 166, 247), // Mauve
    isBold: true,
  ),
  key: Style(
    foregroundRgb: RgbColor(203, 166, 247), // Mauve
    isBold: true,
  ),
  description: Style(
    foregroundRgb: RgbColor(166, 173, 200), // Subtext0
    isDim: true,
  ),
  separator: Style(
    foregroundRgb: RgbColor(88, 91, 112), // Surface2
  ),
);