Ok I so have the "SettingsModal" theme and I'm trying to add transparency to it using QuickCSS or a CSS file, doesn't really matter which. So far I got
"@import url(https://mwittrien.github.io/BetterDiscordAddons/Themes/SettingsModal/SettingsModal.css);
:root {
--settingswidth: 960; /* width of the settings modal, px /
--settingsheight: 80; / height of the settings modal, vh /
--settingsbackground: rgba(30, 31, 34, 0.5); / changed from transparent to semi-transparent black */
}
/* Override the background of the settings modal /
.settingsWrapper-2h4W5y, / Main settings modal wrapper /
.settingsModal-2dE-_Y { / Settings modal content /
background-color: var(--settingsbackground) !important;
backdrop-filter: blur(8px) !important; / Optional glass blur effect */
-webkit-backdrop-filter: blur(8px) !important;
}
"