X-Git-Url: https://git.r.bdr.sh/rbdr/tomato-sauce/blobdiff_plain/be12c97f83026087e0974fc54508b09c3154c9eb..fd38d4096e65ba5afba8ed1ddc75ed1814ca8c16:/lib/renderers/fake_color.js diff --git a/lib/renderers/fake_color.js b/lib/renderers/fake_color.js index b82bb45..b03309c 100644 --- a/lib/renderers/fake_color.js +++ b/lib/renderers/fake_color.js @@ -1,8 +1,12 @@ 'use strict'; -// Sends malformed ANSI 24-bit color strings -const FakeColor = function (red, blue, green) { +/** + * Returns a malformed 24-bit ansi color + * + * @function FakeColorRenderer + * @implements IRenderer + */ +module.exports = function (red, blue, green) { + return `\x1B[28;2;${Math.round(red)};${Math.round(green)};${Math.round(blue)}m`; }; - -module.exports = FakeColor;