ListStyles.defaults constructor

ListStyles.defaults()

Creates default styles.

Implementation

factory ListStyles.defaults() => ListStyles(
  title: Style().bold(),
  titleBar: Style().background(AnsiColor(62)), // Purple background
  filterPrompt: Style().foreground(AnsiColor(241)), // Gray
  filterCursor: Style().foreground(AnsiColor(62)), // Purple
  statusBar: Style().foreground(AnsiColor(241)), // Gray
  statusEmpty: Style().foreground(AnsiColor(240)), // Dark gray
  statusBarActiveFilter: Style().foreground(AnsiColor(62)), // Purple
  statusBarFilterCount: Style().foreground(AnsiColor(240)), // Dark gray
  noItems: Style().foreground(AnsiColor(240)), // Dark gray
  paginationStyle: Style().foreground(AnsiColor(241)),
  helpStyle: Style().foreground(AnsiColor(241)),
  activePaginationDot: Style().foreground(AnsiColor(62)).render('●'),
  inactivePaginationDot: Style().foreground(AnsiColor(241)).render('○'),
  dividerDot: Style().foreground(AnsiColor(240)).padding(0, 1),
);