Coverage for src / lilbee / cli / theme.py: 100%

11 statements  

« prev     ^ index     » next       coverage.py v7.13.4, created at 2026-04-29 19:16 +0000

1"""Centralized color and style constants for the CLI.""" 

2 

3# Rich markup colors — used in [tag]...[/tag] strings 

4ERROR = "red" 

5ERROR_BOLD = "bold red" 

6WARNING = "yellow" 

7ACCENT = "cyan" 

8MUTED = "dim" 

9PROMPT = "bold green" 

10LABEL = "bold" 

11 

12# Amber/gold CRT palette (Textual TUI + website) 

13TUI_BG = "#0a0800" 

14TUI_TEXT = "#ffb000" 

15TUI_DIM = "#996a00" 

16TUI_SURFACE = "#1a1200"