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