fix: set xterm as default theme in CLI and server
This commit is contained in:
@@ -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",
|
||||||
|
|||||||
@@ -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:
|
||||||
|
|||||||
Reference in New Issue
Block a user