]>
git.r.bdr.sh - rbdr/tomato-sauce/blob - lib/renderers/fake_color.js
3 // Sends malformed ANSI 24-bit color strings
4 const FakeColor = function (red
, blue
, green
) {
5 return `\x1B[28;2;${Math.round(red)};${Math.round(green)};${Math.round(blue)}m`;
8 module
.exports
= FakeColor
;