From b4fc54f02baf0274190c8ef0489bd532537ff960 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 7 May 2024 20:55:47 -0400 Subject: [PATCH] Fix --- commands/edit-avatar/rip.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/edit-avatar/rip.js b/commands/edit-avatar/rip.js index b1dd3fb2..6b4a34db 100644 --- a/commands/edit-avatar/rip.js +++ b/commands/edit-avatar/rip.js @@ -78,14 +78,14 @@ module.exports = class RipCommand extends Command { ctx.shadowOffsetX = -2; ctx.shadowOffsetY = -2; ctx.shadowBlur = 2; - ctx.fillStyle = '#999999'; + ctx.fillStyle = '#333333'; ctx.fillText(text, x, y, maxWidth); ctx.shadowColor = '#FFFFFF'; ctx.shadowOffsetX = 2; ctx.shadowOffsetY = 2; ctx.shadowBlur = 2; ctx.fillText(text, x, y, maxWidth); - ctx.fillStyle = '#333333'; + ctx.fillStyle = '#999999'; ctx.shadowColor = 'transparent'; ctx.fillText(text, x, y, maxWidth); return ctx;