From 3045bf19e956513c91256ecf2e81d790283e8e9a Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Fri, 26 Apr 2024 18:16:48 -0400 Subject: [PATCH] Change blue color --- commands/edit-image-text/tweet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/edit-image-text/tweet.js b/commands/edit-image-text/tweet.js index 72e18fa6..6588f8fd 100644 --- a/commands/edit-image-text/tweet.js +++ b/commands/edit-image-text/tweet.js @@ -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; }