UNPKG

@getsolara/solara.js

Version:

A lightweight and modular Discord bot framework built on discord.js v14, with truly optional feature packages.

4 lines 247 B
module.exports = { name: "$randomHexColor", description: "Generates a random hex color code.", takesBrackets: false, execute: async (context, args) => { return `#${Math.floor(Math.random()*16777215).toString(16).padStart(6, '0')}`; } };