fix: set xterm as default theme in CLI and server

This commit is contained in:
GitHub Copilot
2026-01-28 08:29:24 +00:00
parent a181d9ecc9
commit 99e44b3310
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -119,8 +119,8 @@ def load_app_class(app_path: str):
@click.option( @click.option(
"--theme", "--theme",
"-t", "-t",
help="Terminal color theme (monokai, dark, light, dracula, catppuccin, nord, gruvbox, solarized, tokyo).", help="Terminal color theme (xterm, monokai, dark, light, dracula, catppuccin, nord, gruvbox, solarized, tokyo).",
default="monokai", default="xterm",
) )
@click.option( @click.option(
"--font-family", "--font-family",
+1 -1
View File
@@ -124,7 +124,7 @@ class LocalServer:
landing_apps: list | None = None, landing_apps: list | None = None,
compose_mode: bool = False, compose_mode: bool = False,
compose_project: str | None = None, compose_project: str | None = None,
theme: str = "monokai", theme: str = "xterm",
font_family: str | None = None, font_family: str | None = None,
font_size: int = 16, font_size: int = 16,
) -> None: ) -> None: