discord code snippet
no font for better reading :)
looks the same on dark and light mode
make a new code snippet, and paste the following:
function addStyleString(str) { var node = document.createElement('style'); node.innerHTML = str; document.body.appendChild(node); } function mremoveBlockedItems(){ var selection = document.querySelectorAll('.groupStart-3Mlgv1 .blockedSystemMessage-3FmE9n'); if(selection && selection.length > 0){ selection.forEach(child =>{ var parent = child.closest('.groupStart-3Mlgv1'); if(parent){ parent.remove(); } }) } } setInterval(mremoveBlockedItems, 500); if(window.location.host.includes('discord.com')){ var link = document.querySelectorAll("link[rel*='icon']") || document.createElement('link'); for(var i = 0; i < link.length; ++i){ link[i].type = 'image/x-icon'; link[i].rel = 'icon'; link[i].href = 'https://i.imgur.com/LrWerO4.png'; document.getElementsByTagName('head')[0].appendChild(link[i]) document.title = '𝑑𝑖𝑠𝑐𝑜𝑟𝑑' } var c = ` :root, .theme-light, .theme-dark { --button-danger-background: #ffb8c8 !important; --background-tertiary: #ffdfe7 !important; --background-secondary: #ffeef2 !important; --background-secondary-alt: #ffdfe7 !important; --background-primary: #ffeef2 !important; --background-modifier: transition-duration: 0.8s;; --background-modifier-accent: none !important; --background-modifier-hover: #f7e8eb !important; --background-modifier-active: #ffdfe7 !important; --background-modifier-selected: #ffdfe7 !important; --background-accent: #ffb8c8 !important; --header-primary: #ffb8c8 !important; --header-secondary: rgb(105, 96, 96) !important; --text-normal: #696060 !important; --settings-buttons-text: #8fce00 !important; --channeltextarea-background: #ffdfe7 !important; --deprecated-card-bg: #8fce00 !important; --background-floating: #ffcbd7 !important; --deprecated-quickswitcher-input-background: #8fce00 !important; --scrollbar-auto-thumb: #ffb8c8 !important; --scrollbar-auto-track: #none !important; --scrollbar-thin-thumb: #none !important; --elevation-low: none !important; --smallpopoutcolor1: rgb(242, 234, 234) !important; --smallpopoutcolor2: #ece1e1 !important; --spotify-color: #f4eaec !important; --user-buttons-color: #dac8c8 !important; --chat-buttons: #f4eaf0 !important; --text-link: #a08c8c !important; --CircleIconButton: #ffb8c8 !important; --DiscordDMButtonBG: #ac9292 !important; --DiscordDMButtonActive: #fff !important; --elevation-low: none !important; --CircleIconButtonBG: #ac9292 !important; --status-danger: #ffb8c8; --background-mentioned: #ffdfe7; transition-duration: 0.8s; --background-mentioned-hover: #ffdfe7; --background-mobile-primary: #ffdfe7; --brand-500:#ffb8c8 !important; --bg-brand: #ffeef2; --__header-bar-background: #ffeef2; --status-positive-background: #ffb8c8 !important; --fbc-primary-text: #ffb8c8 !important; --interactive-active: #ffb8c8 !important; --mention-foreground: #ffb8c8 !important; --mention-background: #ffdfe7 !important; } .botTagRegular_a9e77f { background: #ffcbd7; } `; addStyleString(c); }
copy text