diff --git a/src/modules/misc/color.js b/src/modules/misc/color.js index 057c7de..26d472f 100644 --- a/src/modules/misc/color.js +++ b/src/modules/misc/color.js @@ -177,7 +177,8 @@ randomtheme.callback = async function (msg, line, args, {truerandom}) { const colors = []; for (let _ = 0; _ < Math.floor(Math.random() * 5) + 1; _++) { - colors.push(truerandom ? tinycolor(Math.floor(Math.random() * 0xffffff)) : randomColor()); + const col = truerandom ? tinycolor(Math.floor(Math.random() * 0xffffff)) : randomColor(); + colors.push(col.toHexString().substring(1)); } const angle = Math.floor(Math.random() * 361);