logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Color::ANSI::Util - Routines for dealing with ANSI colors

Author

       perlancar <perlancar@cpan.org>

Bugs

       Please     report     any     bugs     or     feature     requests     on    the    bugtracker    website
       <https://rt.cpan.org/Public/Dist/Display.html?Name=Color-ANSI-Util>

       When submitting a bug or request, please include a test-file or a patch to  an  existing  test-file  that
       illustrates the bug or desired feature.

perl v5.40.1                                       2025-05-04                             Color::ANSI::Util(3pm)

Bugs/Notes

       Algorithm for finding closest indexed color from RGB color currently not very efficient. Probably can add
       some threshold square distance, below which we can shortcut to the final answer.

Contributing

       To contribute, you can send patches by email/via RT, or send pull requests on GitHub.

       Most of the time, you don't need to build the distribution yourself. You can simply modify the code, then
       test via:

        % prove -l

       If you want to build the distribution (e.g. to try to install it locally on your system), you can install
       Dist::Zilla,  Dist::Zilla::PluginBundle::Author::PERLANCAR, Pod::Weaver::PluginBundle::Author::PERLANCAR,
       and sometimes one or two other Dist::Zilla- and/or Pod::Weaver plugins.  Any  additional  steps  required
       beyond that are considered a bug and can be reported to me.

Contributor

       Steven Haryanto <stevenharyanto@gmail.com>

Description

       This module provides routines for dealing with ANSI colors. The two main functions are "ansifg" and
       "ansibg". With those functions, you can specify colors in RGB and let it output the correct ANSI color
       escape code according to the color depth support of the terminal (whether 16-color, 256-color, or 24bit).
       There are other functions to convert RGB to ANSI in specific color depths, or reverse functions to
       convert from ANSI to RGB codes.

       Keywords: xterm, xterm-256color, terminal

Environment

NO_COLOR
       Can be used to explicitly disable color. See <https://no-color.org> for more details.

       Observed by: ansi{fg,bg}.

   COLOR=>bool
       Can be used to explicitly disable color by setting it to 0.

       Observed by: ansi{fg,bg}.

   COLOR_DEPTH=>INT
       Can be used to explicitly set color depth instead of trying to detect appropriate color depth.

       Observed by: ansi{fg,bg}.

Functions

ansi16_to_rgb
       Usage:

        ansi16_to_rgb($color) -> color::rgb24

       Convert ANSI-16 color to RGB.

       Returns 6-hexdigit, e.g. 'ff00cc'.

       This function is not exported by default, but exportable.

       Arguments ('*' denotes required arguments):

       •   $color* => color::ansi16

           (No description)

       Return value:  (color::rgb24)

   ansi256_to_rgb
       Usage:

        ansi256_to_rgb($color) -> color::rgb24

       Convert ANSI-256 color to RGB.

       This function is not exported by default, but exportable.

       Arguments ('*' denotes required arguments):

       •   $color* => color::ansi256

           (No description)

       Return value:  (color::rgb24)

   rgb_to_ansi16
       Usage:

        rgb_to_ansi16($color) -> color::ansi16

       Convert RGB to ANSI-16 color.

       This function is not exported by default, but exportable.

       Arguments ('*' denotes required arguments):

       •   $color* => color::rgb24

           (No description)

       Return value:  (color::ansi16)

   rgb_to_ansi16_bg_code
       Usage:

        rgb_to_ansi16_bg_code($color) -> str

       Convert RGB to ANSI-16 color escape sequence to change background color.

       This function is not exported by default, but exportable.

       Arguments ('*' denotes required arguments):

       •   $color* => color::rgb24

           (No description)

       Return value:  (str)

   rgb_to_ansi16_fg_code
       Usage:

        rgb_to_ansi16_fg_code($color) -> str

       Convert RGB to ANSI-16 color escape sequence to change foreground color.

       This function is not exported by default, but exportable.

       Arguments ('*' denotes required arguments):

       •   $color* => color::rgb24

           (No description)

       Return value:  (str)

   rgb_to_ansi24b_bg_code
       Usage:

        rgb_to_ansi24b_bg_code($color) -> str

       Convert RGB to ANSI 24bit-color escape sequence to change background color.

       This function is not exported by default, but exportable.

       Arguments ('*' denotes required arguments):

       •   $color* => color::rgb24

           (No description)

       Return value:  (str)

   rgb_to_ansi24b_fg_code
       Usage:

        rgb_to_ansi24b_fg_code($color) -> str

       Convert RGB to ANSI 24bit-color escape sequence to change foreground color.

       This function is not exported by default, but exportable.

       Arguments ('*' denotes required arguments):

       •   $color* => color::rgb24

           (No description)

       Return value:  (str)

   rgb_to_ansi256
       Usage:

        rgb_to_ansi256($color) -> color::ansi256

       Convert RGB to ANSI-256 color.

       This function is not exported by default, but exportable.

       Arguments ('*' denotes required arguments):

       •   $color* => color::rgb24

           (No description)

       Return value:  (color::ansi256)

   rgb_to_ansi256_bg_code
       Usage:

        rgb_to_ansi256_bg_code($color) -> str

       Convert RGB to ANSI-256 color escape sequence to change background color.

       This function is not exported by default, but exportable.

       Arguments ('*' denotes required arguments):

       •   $color* => color::rgb24

           (No description)

       Return value:  (str)

   rgb_to_ansi256_fg_code
       Usage:

        rgb_to_ansi256_fg_code($color) -> str

       Convert RGB to ANSI-256 color escape sequence to change foreground color.

       This function is not exported by default, but exportable.

       Arguments ('*' denotes required arguments):

       •   $color* => color::rgb24

           (No description)

       Return value:  (str)

   rgb_to_ansi_bg_code
       Usage:

        rgb_to_ansi_bg_code($color) -> str

       Convert RGB to ANSI color escape sequence to change background color.

       Autodetect terminal capability and can return either empty string, 16-color, 256-color, or 24bit-code.

       Which  color depth used is determined by "COLOR_DEPTH" environment setting or from Term::Detect::Software
       if   that   module   is   available).   In   other   words,   this   function    automatically    chooses
       rgb_to_ansi{24b,256,16}bgcode().

       This function is not exported by default, but exportable.

       Arguments ('*' denotes required arguments):

       •   $color* => color::rgb24

           (No description)

       Return value:  (str)

   rgb_to_ansi_fg_code
       Usage:

        rgb_to_ansi_fg_code($color) -> str

       Convert RGB to ANSI color escape sequence to change foreground color.

       Autodetect terminal capability and can return either empty string, 16-color, 256-color, or 24bit-code.

       Color  depth  used  is  determined by "COLOR_DEPTH" environment setting or from Term::Detect::Software if
       that   module   is    available.    In    other    words,    this    function    automatically    chooses
       rgb_to_ansi{24b,256,16}fgcode().

       This function is not exported by default, but exportable.

       Arguments ('*' denotes required arguments):

       •   $color* => color::rgb24

           (No description)

       Return value:  (str)

   ansi16fg($rgb)=>STR
       Alias for rgb_to_ansi16_fg_code().

   ansi16bg($rgb)=>STR
       Alias for rgb_to_ansi16_bg_code().

   ansi256fg($rgb)=>STR
       Alias for rgb_to_ansi256_fg_code().

   ansi256bg($rgb)=>STR
       Alias for rgb_to_ansi256_bg_code().

   ansi24bfg($rgb)=>STR
       Alias for rgb_to_ansi24b_fg_code().

   ansi24bbg($rgb)=>STR
       Alias for rgb_to_ansi24b_bg_code().

   rgb_to_ansi_fg_code($rgb)=>STRansifg($rgb)=>STR
       Alias for rgb_to_ansi_fg_code().

   ansibg($rgb)=>STR
       Alias for rgb_to_ansi_bg_code().

   ansi_reset([$conditional])
       Returns "\e[0m", which is the ANSI escape sequence to reset color. Normally you print this sequence after
       you print colored text.

       If $conditional is set to true, then ansi_reset() will return "" if color is disabled.

Homepage

       Please visit the project's homepage at <https://metacpan.org/release/Color-ANSI-Util>.

Name

       Color::ANSI::Util - Routines for dealing with ANSI colors

See Also

Source

       Source repository is at <https://github.com/perlancar/perl-Color-ANSI-Util>.

Synopsis

        use Color::ANSI::Util qw(
            ansifg
            ansibg
        );

        say ansifg("f0c010"); # => "\e[33;1m" (on 16-color terminal)
                              # => "\e[38;5;11m" (on 256-color terminal)
                              # => "\e[38;2;240;192;16m" (on 24-bit-color terminal)

        say ansibg("ff5f87"); # => "\e[47m" (on 16-color terminal)
                              # => "\e[48;5;7m" (on 256-color terminal)
                              # => "\e[48;2;255;95;135m" (on 24-bit-color terminal)

       There are a bunch of other exportable functions too, mostly for converting between RGB and ANSI color
       (16/256/24bit color depth).

Version

       This document describes version 0.165 of Color::ANSI::Util (from Perl distribution Color-ANSI-Util),
       released on 2024-02-23.

See Also