diff --git a/toot/tui/constants.py b/toot/tui/constants.py index 563eb8e..cbf257e 100644 --- a/toot/tui/constants.py +++ b/toot/tui/constants.py @@ -36,6 +36,7 @@ PALETTE = [ ('yellow_bold', 'yellow,bold', ''), ('red', 'dark red', ''), ('warning', 'light red', ''), + ('white_bold', 'white,bold', '') ] VISIBILITY_OPTIONS = [ diff --git a/toot/tui/timeline.py b/toot/tui/timeline.py index ac95469..86d3e78 100644 --- a/toot/tui/timeline.py +++ b/toot/tui/timeline.py @@ -352,7 +352,7 @@ class StatusDetails(urwid.Pile): ] options = " ".join(o for o in options if o) - options = highlight_keys(options, "cyan_bold", "cyan") + options = highlight_keys(options, "white_bold", "cyan") yield ("pack", urwid.Text(options)) def build_linebox(self, contents):