From 34b49b7614938b11c86991d7ffbb2d58d2704a41 Mon Sep 17 00:00:00 2001 From: toast-ts <96593068+toast-ts@users.noreply.github.com> Date: Mon, 28 Aug 2023 20:54:39 +1000 Subject: [PATCH] Darken the red color bright colors is blinding me, send help --- src/commands/dev.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/dev.ts b/src/commands/dev.ts index 541e037..61239f8 100644 --- a/src/commands/dev.ts +++ b/src/commands/dev.ts @@ -18,7 +18,7 @@ export default { output = await eval(code); } catch (err: any) { error = true - const embed = new client.embed().setColor('#ff0000').setTitle('__Eval__').addFields( + const embed = new client.embed().setColor('#630D12').setTitle('__Eval__').addFields( {name: 'Input', value: `\`\`\`js\n${code.slice(0, 1010)}\n\`\`\``}, {name: 'Output', value: `\`\`\`\n${err}\`\`\``} )