summaryrefslogtreecommitdiff
path: root/lib/renderers/fake_color.js
diff options
context:
space:
mode:
authorRuben Beltran del Rio <ruben@unlimited.pizza>2021-12-24 13:54:43 +0100
committerRuben Beltran del Rio <ruben@unlimited.pizza>2021-12-24 13:54:43 +0100
commita0666be3ab58ed83ad6d622cfe2b8293c40dffbb (patch)
treee2688587db986a3bc4b040dce1041dac3b352a80 /lib/renderers/fake_color.js
parentc80b2f4575cfc3d74ec8e0b112943cbd081ffcd7 (diff)
Update code and dpendencies
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`;
};