Coverage for src/lilbee/cli/theme.py: 100%
12 statements
« prev ^ index » next coverage.py v7.15.2, created at 2026-08-14 11:46 +0000
« prev ^ index » next coverage.py v7.15.2, created at 2026-08-14 11:46 +0000
1"""Centralized color and style constants for the CLI."""
3# Rich markup colors: used in [tag]...[/tag] strings
4ERROR = "red"
5ERROR_BOLD = "bold red"
6SUCCESS = "green"
7WARNING = "yellow"
8ACCENT = "cyan"
9MUTED = "dim"
10PROMPT = "bold green"
11LABEL = "bold"
13# Amber/gold CRT palette (Textual TUI + website)
14TUI_BG = "#0a0800"
15TUI_TEXT = "#ffb000"
16TUI_DIM = "#996a00"
17TUI_SURFACE = "#1a1200"