]> git.r.bdr.sh - rbdr/tomato-sauce/blobdiff - lib/renderers/ansi.js
Update code and dpendencies
[rbdr/tomato-sauce] / lib / renderers / ansi.js
index b3a461d5f449f37cba1c2bac66887a11c7913c19..b15be7c08cda8702b5380363d99201a411d6a4d2 100644 (file)
@@ -9,8 +9,8 @@
  */
 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`;
 };