]> git.r.bdr.sh - rbdr/tomato-sauce/blobdiff - lib/renderers/256_colors.js
Update code and dpendencies
[rbdr/tomato-sauce] / lib / renderers / 256_colors.js
index f6e57d33841a604953c15aaf50c9c480301692b5..8fc67b29eb215e70632cec39dc3b66fb833b572a 100644 (file)
@@ -9,11 +9,11 @@
  */
 module.exports = function (red, blue, green) {
 
-  const redValue = Math.round(red * 5 / 255);
-  const blueValue = Math.round(blue * 5 / 255);
-  const greenValue = Math.round(green * 5 / 255);
+    const redValue = Math.round(red * 5 / 255);
+    const blueValue = Math.round(blue * 5 / 255);
+    const greenValue = Math.round(green * 5 / 255);
 
-  const colorNumber = 16 + 36 * redValue + 6 * greenValue + blueValue;
+    const colorNumber = 16 + 36 * redValue + 6 * greenValue + blueValue;
 
-  return `\x1B[48;5;${colorNumber}m`;
+    return `\x1B[48;5;${colorNumber}m`;
 };