theme property

TerminalTheme get theme

Theme slice consumed by TerminalView. Source of truth stays here.

Implementation

TerminalTheme get theme => TerminalTheme(
      background: colors.background,
      foreground: colors.foreground,
      selection: colors.selection,
      ansi: colors.ansi,
      searchMatch: (bg: colors.searchMatchBg, fg: colors.searchMatchFg),
      searchFocused:
          (bg: colors.searchFocusedBg, fg: colors.searchFocusedFg),
      hintStart: (bg: colors.hintStartBg, fg: colors.hintStartFg),
      cursorText: colors.cursorText,
      cursorColor: colors.cursorBody,
      bellOverlay: bell.color,
    );