From 1dd2cd019f0ba94874de2548ddd51cd5b490efb4 Mon Sep 17 00:00:00 2001 From: "Kirill A. Korinsky" Date: Sun, 25 Jan 2026 12:05:40 +0100 Subject: [PATCH] Update color docs with bright_* and bg_bright_* entries --- beets/ui/__init__.py | 10 +++++----- docs/reference/config.rst | 12 +++++++++--- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/beets/ui/__init__.py b/beets/ui/__init__.py index f9c760b83..8db4dd79f 100644 --- a/beets/ui/__init__.py +++ b/beets/ui/__init__.py @@ -472,13 +472,13 @@ CODE_BY_COLOR = { "normal": 0, "bold": 1, "faint": 2, - # "italic": 3, + "italic": 3, "underline": 4, - # "blink_slow": 5, - # "blink_rapid": 6, + "blink_slow": 5, + "blink_rapid": 6, "inverse": 7, - # "conceal": 8, - # "crossed_out": 9 + "conceal": 8, + "crossed_out": 9, # Text colors. "black": 30, "red": 31, diff --git a/docs/reference/config.rst b/docs/reference/config.rst index b4874416c..b654c118f 100644 --- a/docs/reference/config.rst +++ b/docs/reference/config.rst @@ -467,14 +467,20 @@ Available attributes: Foreground colors ``black``, ``red``, ``green``, ``yellow``, ``blue``, ``magenta``, ``cyan``, - ``white`` + ``white``, ``bright_black``, ``bright_red``, ``bright_green``, + ``bright_yellow``, ``bright_blue``, ``bright_magenta``, ``bright_cyan``, + ``bright_white`` Background colors ``bg_black``, ``bg_red``, ``bg_green``, ``bg_yellow``, ``bg_blue``, - ``bg_magenta``, ``bg_cyan``, ``bg_white`` + ``bg_magenta``, ``bg_cyan``, ``bg_white``, ``bg_bright_black``, + ``bg_bright_red``, ``bg_bright_green``, ``bg_bright_yellow``, + ``bg_bright_blue``, ``bg_bright_magenta``, ``bg_bright_cyan``, + ``bg_bright_white`` Text styles - ``normal``, ``bold``, ``faint``, ``underline``, ``reverse`` + ``normal``, ``bold``, ``faint``, ``italic``, ``underline``, ``blink_slow``, + ``blink_rapid``, ``inverse``, ``conceal``, ``crossed_out`` terminal_width ~~~~~~~~~~~~~~