summaryrefslogtreecommitdiff
path: root/lib/renderers/fake_color.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/renderers/fake_color.js')
-rw-r--r--lib/renderers/fake_color.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/renderers/fake_color.js b/lib/renderers/fake_color.js
index b03309c..d0482dc 100644
--- a/lib/renderers/fake_color.js
+++ b/lib/renderers/fake_color.js
@@ -8,5 +8,5 @@
*/
module.exports = function (red, blue, green) {
- return `\x1B[28;2;${Math.round(red)};${Math.round(green)};${Math.round(blue)}m`;
+ return `\x1B[28;2;${Math.round(red)};${Math.round(green)};${Math.round(blue)}m`;
};