Extendable
Plugins
Plugins can make use of Discord's internal methods and Velocity's provided utilities to create advanced and creative Plugins.
const { WebpackModules, Notifications } = Velocity;
const { Components, React } = WebpackModules.common;
const ButtonModules = Components.ButtonModules;
<ButtonModules.default
color={ButtonModules.ButtonColors.GREEN}
onClick={() =>
Notifications.showToast("Clicked!")
}
>
Click Me!
</ButtonModules.default>
Customisable
Themes
Themes allow you to re-imagine Discord's look and feel, either by creating your own with CSS or by downloading one of the numerous public themes.
.something {
display: none; /* :( */
}
.something::after {
display: flex;
content: "";
/* make stuff better */
}