Documentation

CLI Themes

Personalize the CLI with Matrix, Dracula, Nord, and more.

Overview

TraceLLM supports multiple CLI color themes. Change the look and feel of the terminal interface to match your preferences — from a cyberpunk Matrix aesthetic to clean minimal Nord.

Available Themes

Six built-in themes are available out of the box:

ThemeDescription
matrixGreen-on-black cyberpunk aesthetic
draculaDark purple-teal Dracula color palette
nordClean blue-gray minimal theme
retroWarm amber CRT terminal look
purpleViolet and indigo tones
defaultThe standard TraceLLM color scheme

Commands

Use the tracellm theme subcommand to manage themes:

terminalCopy
bash
# List all available themes
tracellm theme list

# Show the currently active theme
tracellm theme current

# Set a theme
tracellm theme set matrix
tracellm theme set dracula
tracellm theme set nord
tracellm theme set retro
tracellm theme set purple

# Reset to the default theme
tracellm theme reset

Output Example

Listing available themes:

Terminal outputCopy
text
$ tracellm theme list

  ╭── Available Themes ──────────────────────────────────────╮
  │                                                          │
  │  ● matrix     Green-on-black cyberpunk theme              │
  │  ○ dracula    Dracula color palette                      │
  │  ○ nord       Clean blue-gray minimal theme              │
  │  ○ retro      Warm amber CRT terminal look               │
  │  ○ purple     Violet and indigo tones                    │
  │  ○ default    Standard TraceLLM color scheme             │
  │                                                          │
  ╰──────────────────────────────────────────────────────────╯

Setting a theme persists across sessions and applies immediately:

Theme set confirmationCopy
text
$ tracellm theme set matrix

  Theme set to "matrix". Restart the stack to see the new colors.

Troubleshooting

Tracey Tip

Run tracellm theme reset if colors appear garbled after setting a theme. The reset command restores the default palette immediately.