diff --git a/cli/src/zshell/subcommands/__pycache__/scheme.cpython-314.pyc b/cli/src/zshell/subcommands/__pycache__/scheme.cpython-314.pyc index e8de4c9..5473fa4 100644 Binary files a/cli/src/zshell/subcommands/__pycache__/scheme.cpython-314.pyc and b/cli/src/zshell/subcommands/__pycache__/scheme.cpython-314.pyc differ diff --git a/cli/src/zshell/subcommands/scheme.py b/cli/src/zshell/subcommands/scheme.py index 4c51308..7bdba21 100644 --- a/cli/src/zshell/subcommands/scheme.py +++ b/cli/src/zshell/subcommands/scheme.py @@ -45,7 +45,6 @@ def generate( None, help="Name of a premade scheme in this format: :[:]" ), mode: Optional[str] = typer.Option(None, help="Mode of the preset scheme (dark or light)."), - accent: Optional[str] = typer.Option(None, help="Accent for schemes that support it (e.g. mauve)."), ): HOME = str(os.getenv("HOME")) @@ -475,8 +474,7 @@ def generate( if preset: p_scheme, p_variant, p_accent = resolve_preset(preset) - accent = accent or p_accent - palette_obj = get_palette(p_scheme, p_variant, mode or config_mode, accent=accent) + palette_obj = get_palette(p_scheme, p_variant, mode or config_mode, accent=p_accent) colors = palette_obj.colors effective_mode = palette_obj.mode name = palette_obj.scheme