From ce9bb30f22fc54c2b86921d5b2412cca3779574a Mon Sep 17 00:00:00 2001 From: Daniel Li Date: Wed, 19 Oct 2022 10:33:36 -0700 Subject: [PATCH] Update link to Truecolor in readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index f18b2aa..4c620a2 100644 --- a/readme.md +++ b/readme.md @@ -281,7 +281,7 @@ console.log(foregroundColorNames.includes('pink')); ## 256 and Truecolor color support -Chalk supports 256 colors and [Truecolor](https://gist.github.com/XVilka/8346728) (16 million colors) on supported terminal apps. +Chalk supports 256 colors and [Truecolor](https://github.com/termstandard/colors) (16 million colors) on supported terminal apps. Colors are downsampled from 16 million RGB values to an ANSI color format that is supported by the terminal emulator (or by specifying `{level: n}` as a Chalk option). For example, Chalk configured to run at level 1 (basic color support) will downsample an RGB value of #FF0000 (red) to 31 (ANSI escape for red).