1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 08:20:59 -04:00

Darken the red color

bright colors is blinding me, send help
This commit is contained in:
Toast 2023-08-28 20:54:39 +10:00 committed by GitHub
parent b15a1e60c0
commit 3241647d1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@ export default {
output = await eval(code); output = await eval(code);
} catch (err: any) { } catch (err: any) {
error = true 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: 'Input', value: `\`\`\`js\n${code.slice(0, 1010)}\n\`\`\``},
{name: 'Output', value: `\`\`\`\n${err}\`\`\``} {name: 'Output', value: `\`\`\`\n${err}\`\`\``}
) )