Skip to content

Commit

Permalink
fix: theme variant can be set using environment variable (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbreddels authored Sep 27, 2023
1 parent c42102c commit 8ce427b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solara/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def cli():
@click.option(
"--theme-variant",
type=settings.ThemeVariant,
default=settings.ThemeVariant.light.name,
default=settings.theme.variant.name,
help=f"Use light or dark variant, or auto detect (auto). [default: {settings.theme.variant.name}",
)
@click.option(
Expand Down

0 comments on commit 8ce427b

Please sign in to comment.