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 and iisakkirotko committed Sep 29, 2023
1 parent 6cb7a82 commit 8bc77c5
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 8bc77c5

Please sign in to comment.