Skip to content

Commit 3c2d584

Browse files
committed
style: make bus log color more neutral (bright_black instead of magenta)
Bus is by far the highest-volume, most constant log category - a vivid color like magenta drew disproportionate visual attention for what's mostly background chatter. bright_black (a standard, muted ANSI color) is distinct enough from the default white fallback and the other category colors, without competing for attention.
1 parent 3e897e9 commit 3c2d584

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

ovos_tui_client/app.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,11 @@
7878
SOURCE_TAG_WIDTH = max(len(name) for name in KNOWN_LOG_NAMES)
7979

8080
LOG_SOURCE_COLORS = {
81-
"bus": "magenta", "skills": "green", "audio": "yellow", "media": "yellow",
81+
# bus is deliberately muted (bright_black, not a vivid color) - bus
82+
# traffic is by far the highest-volume, most constant category, so
83+
# giving it a loud color would dominate the pane visually far more
84+
# than its actual importance warrants.
85+
"bus": "bright_black", "skills": "green", "audio": "yellow", "media": "yellow",
8286
"voice": "cyan", "gui": "blue", "enclosure": "white", "phal": "red",
8387
}
8488
DEFAULT_LOG_COLOR = "white"

0 commit comments

Comments
 (0)