BARGS
    Preparing search index...

    Interface ThemeColors

    Color codes for each semantic element in help output. Empty string means no color (passthrough).

    interface ThemeColors {
        command: string;
        commandAlias: string;
        defaultText: string;
        defaultValue: string;
        description: string;
        epilog: string;
        example: string;
        flag: string;
        positional: string;
        scriptName: string;
        sectionHeader: string;
        type: string;
        url: string;
        usage: string;
    }
    Index

    Properties

    command: string

    Command names (e.g., "init", "build")

    commandAlias: string

    Command aliases (e.g., "a", "ls") - shown dimmer than command names

    defaultText: string

    The "default: " label text

    defaultValue: string

    Default value annotations (e.g., "false", ""hello"")

    description: string

    Description text for options/commands

    epilog: string

    Epilog text (homepage, repository)

    example: string

    Example code/commands

    flag: string

    Flag names (e.g., "--verbose", "-v")

    positional: string

    Positional argument names (e.g., "")

    scriptName: string

    CLI name shown in header (e.g., "myapp")

    sectionHeader: string

    Section headers (e.g., "USAGE", "OPTIONS")

    type: string

    Type annotations (e.g., "[string]", "[number]")

    url: string

    URL text (for linkified URLs)

    usage: string

    Usage line text