Theme Troubleshooting
First, try the most popular themes from https://betterdiscord.app/themes
If those themes do work
It's an issue with the theme you're trying to use. We can't help you with that, because we are not the developers of the themes.
Either use a different theme, or:
- See when it was last updated (in the About section on the BD site, or by visiting its github repo and checking the file list). If it wasn't updated for longer than a year, it means it's dead. Use a different theme
- If it isn't dead, try contacting its developer for help. Join their support server if they have it linked somewhere, or open an issue in the theme's github repo. Read the info channels on their server and if that doesn't answer your question, ask in their support channel. Mention that you are using Vencord and how you installed the theme
If those themes also don't work
It's an issue with Vencord. Ask for help in #🏥-vencord-support-🏥 after following this checklist:
- If you are on browser, use the extension, not the userscript. the userscript cannot load remote resources like themes
- If you are on brave browser, it currently has a bug that might break themes. Use a different browser or wait for brave to fix it
- Use the Local Themes tab, not the Online Themes tab. Make sure you got the proper theme file. It should be named
SomeName.theme.css
If a theme broke your Discord and now you can't access Settings to remove it
open the dev tools with CTRL + Shift + i and click on the “console” tab at the top. Then paste and run (with enter) the following code.
It will
- disable custom css (you can turn it back on in Vencord Settings)
- copy your current theme links to your clipboard as a backup
- remove all themes
(() => {
Vencord.Settings.useQuickCss = false
copy(Vencord.Settings.themeLinks.join("\n"))
Vencord.Settings.themeLinks = []
Vencord.Settings.enabledThemes = []
})()