Skip to main content
Version: 0.1.22

Commands

Tinct provides several commands for generating themes, extracting palettes, and managing plugins.

Available commands

CommandDescription
generateGenerate theme configurations from a colour source
extractExtract colours without generating configurations
pluginsManage input and output plugins
filesTrack and manage generated files

Global flags

These flags are available on all commands:

FlagDescription
-v, --verboseEnable verbose output
-q, --quietSuppress non-error output
-h, --helpShow help for the command
--versionShow version information

Command structure

tinct <command> [subcommand] [flags]

Examples

# Generate theme from image
tinct generate -i image -p ~/wallpaper.jpg -o all

# Extract palette only
tinct extract -i image -p ~/wallpaper.jpg

# List plugins
tinct plugins list

# Show tracked files
tinct files list

Getting help

Get help for any command:

# General help
tinct --help

# Command-specific help
tinct generate --help
tinct plugins --help

Shell completion

Enable tab completion for your shell:

# Bash
source <(tinct completion bash)

# Zsh
source <(tinct completion zsh)

# Fish
tinct completion fish | source