diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-08-25 12:36:37 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-08-25 12:36:37 +0200 |
| commit | e5de70f2c1dcac767bd34a6b90ac1797a7acb433 (patch) | |
| tree | 25a8c8f339fb5b496b460391ee06a9effeb64855 /lib/renderers/true_color.js | |
| parent | 6b909d95ec07848136a6f337db28318c1cd46c60 (diff) | |
| parent | d7bc21d19e168f3a99f54e5ba4866ed49f1187f1 (diff) | |
Merge branch 'rust'
Diffstat (limited to 'lib/renderers/true_color.js')
| -rw-r--r-- | lib/renderers/true_color.js | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/renderers/true_color.js b/lib/renderers/true_color.js deleted file mode 100644 index 811d186..0000000 --- a/lib/renderers/true_color.js +++ /dev/null @@ -1,19 +0,0 @@ -'use strict'; - -// Returns an ANSI Code for True Color, see: -// https://en.wikipedia.org/wiki/ANSI_escape_code#Colors -// and look for 24-bit colors. Only looks good in supported terminals, -// otherwise looks like FakeColor. -/** - * Returns an ANSI code for 24-bit True Color, see - * https://en.wikipedia.org/wiki/ANSI_escape_code#Colors and look for - * 24-bit colors for more info. Only looks good in supported terminals, - * otherwise looks like FakeColor - * - * @function TrueColorRenderer - * @implements IRenderer - */ -module.exports = function (red, blue, green) { - - return `\x1B[48;2;${Math.round(red)};${Math.round(green)};${Math.round(blue)}m`; -}; |