Skip to content

Constants

ZombieClient exposes a set of helpful constants that you can use across your bot.

BOT_COLORS

A predefined palette of beautiful, vibrant colors for your Embeds. You can access these colors directly from the ZombieClient instance (client.colors) or import them manually.

typescript
import { BOT_COLORS } from '@thezombiepl/zombieclient';

// or via client instance:
const color = client.colors.BOT_INFO;

Available Colors:

ConstantHex ValueColor PreviewTypical Use Case
BOT_INFO0x00dac0 CyanGeneral information, stats, profiles
BOT_GREEN0x1ada00 GreenSuccess messages, operation completed
BOT_RED0xda001a RedError messages, missing permissions
BOT_ORANGE0xff6700 OrangeWarnings, cooldowns, moderation

Usage Example:

typescript
const embed = new EmbedBuilder()
    .setColor(client.colors.BOT_GREEN)
    .setDescription('Command executed successfully!');

Wszelkie prawa zastrzeżone.