BARGS
    Preparing search index...

    Variable themesConst

    themes: {
        default: {
            colors: {
                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;
            };
        };
        mono: {
            colors: {
                command: "";
                commandAlias: "";
                defaultText: "";
                defaultValue: "";
                description: "";
                epilog: "";
                example: "";
                flag: "";
                positional: "";
                scriptName: "";
                sectionHeader: "";
                type: "";
                url: "";
                usage: "";
            };
        };
        ocean: {
            colors: {
                command: string;
                commandAlias: "\u001b[36m";
                defaultText: "\u001b[34m";
                defaultValue: "\u001b[32m";
                description: "\u001b[37m";
                epilog: "\u001b[34m";
                example: string;
                flag: "\u001b[96m";
                positional: "\u001b[92m";
                scriptName: string;
                sectionHeader: "\u001b[94m";
                type: "\u001b[36m";
                url: "\u001b[96m";
                usage: "\u001b[37m";
            };
        };
        warm: {
            colors: {
                command: string;
                commandAlias: string;
                defaultText: string;
                defaultValue: "\u001b[93m";
                description: "\u001b[37m";
                epilog: string;
                example: string;
                flag: "\u001b[93m";
                positional: "\u001b[91m";
                scriptName: string;
                sectionHeader: "\u001b[31m";
                type: "\u001b[33m";
                url: "\u001b[93m";
                usage: "\u001b[37m";
            };
        };
    } = ...

    Built-in themes.

    Type Declaration

    • Readonlydefault: {
          colors: {
              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;
          };
      }

      Default colorful theme

      • Readonlycolors: {
            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;
        }
        • Readonlycommand: string

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

        • ReadonlycommandAlias: string

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

        • ReadonlydefaultText: string

          The "default: " label text

        • ReadonlydefaultValue: string

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

        • Readonlydescription: string

          Description text for options/commands

        • Readonlyepilog: string

          Epilog text (homepage, repository)

        • Readonlyexample: string

          Example code/commands

        • Readonlyflag: string

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

        • Readonlypositional: string

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

        • ReadonlyscriptName: string

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

        • ReadonlysectionHeader: string

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

        • Readonlytype: string

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

        • Readonlyurl: string

          URL text (for linkified URLs)

        • Readonlyusage: string

          Usage line text

    • Readonlymono: {
          colors: {
              command: "";
              commandAlias: "";
              defaultText: "";
              defaultValue: "";
              description: "";
              epilog: "";
              example: "";
              flag: "";
              positional: "";
              scriptName: "";
              sectionHeader: "";
              type: "";
              url: "";
              usage: "";
          };
      }

      No colors (monochrome)

    • Readonlyocean: {
          colors: {
              command: string;
              commandAlias: "\u001b[36m";
              defaultText: "\u001b[34m";
              defaultValue: "\u001b[32m";
              description: "\u001b[37m";
              epilog: "\u001b[34m";
              example: string;
              flag: "\u001b[96m";
              positional: "\u001b[92m";
              scriptName: string;
              sectionHeader: "\u001b[94m";
              type: "\u001b[36m";
              url: "\u001b[96m";
              usage: "\u001b[37m";
          };
      }

      Ocean theme - blues and greens (bright)

    • Readonlywarm: {
          colors: {
              command: string;
              commandAlias: string;
              defaultText: string;
              defaultValue: "\u001b[93m";
              description: "\u001b[37m";
              epilog: string;
              example: string;
              flag: "\u001b[93m";
              positional: "\u001b[91m";
              scriptName: string;
              sectionHeader: "\u001b[31m";
              type: "\u001b[33m";
              url: "\u001b[93m";
              usage: "\u001b[37m";
          };
      }

      Warm theme - reds and yellows