// Branding for the Discord bot. Mirrors the server's BRAND_* scheme so embeds and // logs carry the instance identity. Kept minimal — the bot only needs the name // and the accent color (as an int for discord.js embeds). require('dotenv').config() const name = process.env.BRAND_NAME || 'Runic Gateway' const accentHex = process.env.BRAND_ACCENT_COLOR || '#7f99bd' const accentInt = (() => { const n = parseInt(String(accentHex).replace('#', ''), 16) return Number.isNaN(n) ? 0x7f99bd : n })() module.exports = { name, accentHex, accentInt }