Change blue color

This commit is contained in:
Dragon Fire
2024-04-26 18:16:48 -04:00
parent e1f4b5b8ee
commit 3045bf19e9
+1 -1
View File
@@ -248,7 +248,7 @@ module.exports = class TweetCommand extends Command {
if (!word.startsWith('#') && !word.startsWith('@')) continue;
const preLen = ctx.measureText(`${words.slice(0, i).join(' ')} `).width;
const oldStyle = ctx.fillStyle;
ctx.fillStyle = 'blue';
ctx.fillStyle = '#1da1f2';
ctx.fillText(word, x + preLen, y + (height * currentLine));
ctx.fillStyle = oldStyle;
}