Coverage for src / lilbee / app / themes.py: 100%
2 statements
« prev ^ index » next coverage.py v7.13.4, created at 2026-06-28 01:01 +0000
« prev ^ index » next coverage.py v7.13.4, created at 2026-06-28 01:01 +0000
1"""Theme name constants shared by the TUI and the settings map."""
3from __future__ import annotations
5DARK_THEMES: tuple[str, ...] = (
6 "monokai",
7 "dracula",
8 "tokyo-night",
9 "nord",
10 "gruvbox",
11 "catppuccin-mocha",
12 "catppuccin-frappe",
13 "atom-one-dark",
14 "rose-pine",
15 "solarized-dark",
16 "textual-dark",
17)