17 lines
474 B
TypeScript
17 lines
474 B
TypeScript
// Dependencies
|
|
import { ColorResolvable } from "discord.js";
|
|
|
|
// Color for successfully actions
|
|
export const successColor: ColorResolvable = "#22bb33";
|
|
|
|
// Color for waiting actions
|
|
export const waitColor: ColorResolvable = "#f0ad4e";
|
|
|
|
// Color for error actions
|
|
export const errorColor: ColorResolvable = "#bb2124";
|
|
|
|
// Footer text
|
|
export const footerText = "https://github.com/ZynerOrg/xyter";
|
|
|
|
// Footer icon
|
|
export const footerIcon = "https://github.com/ZynerOrg.png";
|