blob: b82bb45659507dbe0d5fac758c952aa4e2975557 (
plain)
1
2
3
4
5
6
7
8
|
'use strict';
// Sends malformed ANSI 24-bit color strings
const FakeColor = function (red, blue, green) {
return `\x1B[28;2;${Math.round(red)};${Math.round(green)};${Math.round(blue)}m`;
};
module.exports = FakeColor;
|