*/
module.exports = function (red, blue, green) {
- const colorOffset = Math.round((red + blue + green) * 7 / (255 * 3));
- const colorNumber = 40 + colorOffset;
+ const colorOffset = Math.round((red + blue + green) * 7 / (255 * 3));
+ const colorNumber = 40 + colorOffset;
- return `\x1B[${colorNumber}m`;
+ return `\x1B[${colorNumber}m`;
};