Skip to content

Instantly share code, notes, and snippets.

@QEStudios
Last active September 13, 2025 08:47
Show Gist options
  • Select an option

  • Save QEStudios/d19f6e510dd8d6af8ccdf72f0f2cede0 to your computer and use it in GitHub Desktop.

Select an option

Save QEStudios/d19f6e510dd8d6af8ccdf72f0f2cede0 to your computer and use it in GitHub Desktop.
Remove/recolour the new "Create DM" button in discord using custom CSS (eg vencord QuickCSS)

Discord recently added a "Create DM" button, in a pleasant BLINDING BLUE. This CSS will make it less distracting!

What the button currently looks like:

create-dm-original create-dm-original-light-mode

To remove the button entirely:

:is([class^="privateChannelsHeaderContainer__"]) > [class^="button_"] {
  display: none;
}

create-dm-removed create-dm-removed-light-mode

To make the button a less distracting colour (and more in-line with the discord theme):

:is([class^="privateChannelsHeaderContainer__"]) > [class^="button_"] {
  background-color: var(--button-secondary-background);
  border: 1px solid var(--border-faint);
  color: var(--button-secondary-text);
}

create-dm-secondary-colour create-dm-secondary-colour-light-mode

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment