Utility TypeScript @ 2.0.0-beta
    Preparing search index...

    Interface AnsiColours

    Ansi colour codes for the default node {@link MessageMaker.Args}.painter function.

    0.1.1

    interface AnsiColours {
        "24": {
            black: string;
            blue: string;
            green: string;
            grey: string;
            "light-grey": string;
            orange: string;
            pink: string;
            purple: string;
            red: string;
            turquoise: string;
            white: string;
            yellow: string;
        };
        "4": {
            bg: {
                black: string;
                blue: string;
                green: string;
                grey: string;
                "light-grey": string;
                orange: string;
                pink: string;
                purple: string;
                red: string;
                turquoise: string;
                white: string;
                yellow: string;
            };
            fg: {
                black: string;
                blue: string;
                green: string;
                grey: string;
                "light-grey": string;
                orange: string;
                pink: string;
                purple: string;
                red: string;
                turquoise: string;
                white: string;
                yellow: string;
            };
        };
        "8": {
            black: string;
            blue: string;
            green: string;
            grey: string;
            "light-grey": string;
            orange: string;
            pink: string;
            purple: string;
            red: string;
            turquoise: string;
            white: string;
            yellow: string;
        };
    }
    Index

    Properties

    24 4 8

    Properties

    "24": {
        black: string;
        blue: string;
        green: string;
        grey: string;
        "light-grey": string;
        orange: string;
        pink: string;
        purple: string;
        red: string;
        turquoise: string;
        white: string;
        yellow: string;
    }

    24-bit colours to be used for foreground or background.

    e.g., 24.white = '2;245;245;245'

    "4": {
        bg: {
            black: string;
            blue: string;
            green: string;
            grey: string;
            "light-grey": string;
            orange: string;
            pink: string;
            purple: string;
            red: string;
            turquoise: string;
            white: string;
            yellow: string;
        };
        fg: {
            black: string;
            blue: string;
            green: string;
            grey: string;
            "light-grey": string;
            orange: string;
            pink: string;
            purple: string;
            red: string;
            turquoise: string;
            white: string;
            yellow: string;
        };
    }

    4-bit colours to be used.

    e.g., 4.fg.white = '37'

    Type declaration

    • bg: {
          black: string;
          blue: string;
          green: string;
          grey: string;
          "light-grey": string;
          orange: string;
          pink: string;
          purple: string;
          red: string;
          turquoise: string;
          white: string;
          yellow: string;
      }

      Codes used for background colours.

    • fg: {
          black: string;
          blue: string;
          green: string;
          grey: string;
          "light-grey": string;
          orange: string;
          pink: string;
          purple: string;
          red: string;
          turquoise: string;
          white: string;
          yellow: string;
      }

      Codes used for foreground colours.

    "8": {
        black: string;
        blue: string;
        green: string;
        grey: string;
        "light-grey": string;
        orange: string;
        pink: string;
        purple: string;
        red: string;
        turquoise: string;
        white: string;
        yellow: string;
    }

    8-bit colours to be used for foreground or background.

    e.g., 8.white = '5;7'