├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md └── workflows │ └── jekyll-gh-pages.yml ├── LICENSE ├── README.md ├── core ├── Settings-Icons │ ├── Accessibility.svg │ ├── ActivityPrivacy.svg │ ├── Advanced.svg │ ├── Appearance.svg │ ├── AuthorisedApps.svg │ ├── BDCustomCSS.svg │ ├── BDPlugins.svg │ ├── BDSettings.svg │ ├── BDThemes.svg │ ├── BDUpdates.svg │ ├── Billing.svg │ ├── Clips.svg │ ├── Cloud.svg │ ├── Connections.svg │ ├── Devices.svg │ ├── FamilyCentre.svg │ ├── FriendRequests.svg │ ├── GameOverlay.svg │ ├── GiftInventory.svg │ ├── HypeSquad.svg │ ├── Keybinds.svg │ ├── Language.svg │ ├── LogOut.svg │ ├── Merch.svg │ ├── MyAccount.svg │ ├── Nitro.svg │ ├── Notifications.svg │ ├── Privacy&Safety.svg │ ├── Profiles.svg │ ├── RegisteredGames.svg │ ├── ServerBoost.svg │ ├── StreamerMode.svg │ ├── Subscriptions.svg │ ├── Text&Images.svg │ ├── Voice&Video.svg │ ├── WhatsNew.svg │ └── WindowsSettings.svg ├── badges.css ├── custom-font.css ├── hideactivenow.css ├── hljs.css ├── settings-icons-vencord.css └── settings-icons.css ├── themes-cores ├── neutron8.css └── nocturnal.css └── themes-files ├── neutron.theme.css └── nocturnal.theme.css /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: Support Discord Server 4 | url: http://discord.com/invite/PZdnCVD 5 | about: Please report your issue here 6 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- 1 | # Sample workflow for building and deploying a Jekyll site to GitHub Pages 2 | name: Deploy Jekyll with GitHub Pages dependencies preinstalled 3 | 4 | on: 5 | # Runs on pushes targeting the default branch 6 | push: 7 | branches: ["master"] 8 | 9 | # Allows you to run this workflow manually from the Actions tab 10 | workflow_dispatch: 11 | 12 | # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages 13 | permissions: 14 | contents: read 15 | pages: write 16 | id-token: write 17 | 18 | # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. 19 | # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. 20 | concurrency: 21 | group: "pages" 22 | cancel-in-progress: false 23 | 24 | jobs: 25 | # Build job 26 | build: 27 | runs-on: ubuntu-latest 28 | steps: 29 | - name: Checkout 30 | uses: actions/checkout@v4 31 | - name: Setup Pages 32 | uses: actions/configure-pages@v5 33 | - name: Build with Jekyll 34 | uses: actions/jekyll-build-pages@v1 35 | with: 36 | source: ./ 37 | destination: ./_site 38 | - name: Upload artifact 39 | uses: actions/upload-pages-artifact@v3 40 | 41 | # Deployment job 42 | deploy: 43 | environment: 44 | name: github-pages 45 | url: ${{ steps.deployment.outputs.page_url }} 46 | runs-on: ubuntu-latest 47 | needs: build 48 | steps: 49 | - name: Deploy to GitHub Pages 50 | id: deployment 51 | uses: actions/deploy-pages@v4 52 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2023-2023 "xcruxiex" 2 | 3 | The author (xcruxiex) retains full rights of all files in this repo. 4 | 5 | ---- 6 | 7 | You are not allowed to (without my explicit permission): 8 | 9 | * Redistribute these files or any parts (even if you just want to "promote" them). 10 | * Upload these files as your own to another place 11 | * Post an edited version anywhere 12 | * If you'd like to share your edited version of my themes (Aka presets), do it in the [#preset-share channel](https://discord.com/channels/499348536534761473/1036810760690614282) on my [discord](https://discord.gg/PZdnCVD) 13 | 14 | You are allowed to : 15 | 16 | * Edit these themes for personal use only. 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Discord Themes 2 | 3 | All the themes/mini-themes/tools 'Spectra' made for Discord. 4 | 5 | Help me to make my themes even better! Join the discord server! 6 | Suggestions and bugs reports are welcome 7 | 8 | Discord server invite : https://discord.gg/PZdnCVD 9 | 10 | ## 1. How to ask for help 11 | 0. First, read the documentation down below. 12 | 1. Join the [discord server](https://discord.gg/PZdnCVD) 13 | 2. Read the [#rules](https://discord.com/channels/499348536534761473/564631764765769751) 14 | 3. Check [#read-before-asking](https://discord.com/channels/499348536534761473/564629861679759403) 15 | 4. Go to [#support](https://discord.com/channels/499348536534761473/1036786444179623956) 16 | 5. Ask 17 | * Specify the theme 18 | * Explain your problem clearly 19 | * add a screenshot if needed 20 | 21 | ## 2. Installing a theme 22 | First of all, make sure you have installed [BetterDiscord](https://betterdiscord.app/) 23 | 24 | * Step 1: Download the theme file 25 | * Step 2: Save the file somewhere you can find it 26 | * Step 3: Open the themes folder: 27 | * Go to your Discord's settings 28 | * Under themes, click on the "Open themes folder" button 29 | * Step 4: Put the theme file inside the themes folder 30 | * Step 5: Reload Discord using CTRL+R (or CMD+R on MacOS) 31 | * Step 6: Enable the theme: 32 | * Go to your Discord's settings 33 | * Under themes, enable your theme by clicking the switch 34 | 35 | ## 3. Customize your theme 36 | All themes are provided with images & color, but you can easily customize your theme by following these steps 37 | 38 | METHOD 1: Editing the theme file 39 | 40 | * Step 1: Open the theme file using any text editor, notepad can be hard to read, [Visual Studio Code](https://code.visualstudio.com) or [Sublime Text](http://www.sublimetext.com) are good options! 41 | * Step 2: Find the ":root" part, this is where all color and images are defined, it may look like this: 42 | 43 | ![this](https://i.imgur.com/Kwi75qZ.png)) 44 | 45 | * Step 3: Change the values to your liking 46 | * For images, replace the link, it must be a direct link (www.website.com/exemple-img.png) (you can use .png/.jpg/.jpeg/.gif) 47 | * For colors, replace the color code, you can use this website to get color codes(https://www.w3schools.com/colors/colors_picker.asp) 48 | 49 | METHOD 2: Using Gibbu's theme editor, this tool lets you edit Discord themes without any programming skills required! 50 | 51 | * [https://bdeditor.dev/themes](https://bdeditor.dev/themes) 52 | 53 | # 4. Themes list 54 | ## Neutron 55 | A simple but highly customizable theme, now sugar free! 56 | 57 | Download : https://betterdiscord.app/theme/Neutron 58 | 59 | ![](https://i.imgur.com/5YhoRtf.jpg) 60 | 61 | ## Nocturnal 62 | For when default discord just isn't dark enough, a theme for those who live a night 63 | 64 | Download : https://betterdiscord.app/theme/Nocturnal 65 | 66 | ![](https://i.imgur.com/yITlAjo.png) 67 | -------------------------------------------------------------------------------- /core/Settings-Icons/Accessibility.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/ActivityPrivacy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/Advanced.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/Appearance.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/AuthorisedApps.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/BDCustomCSS.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/BDPlugins.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /core/Settings-Icons/BDSettings.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/BDThemes.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/BDUpdates.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/Billing.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/Clips.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/Cloud.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/Connections.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/Devices.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/FamilyCentre.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/FriendRequests.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/GameOverlay.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/GiftInventory.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/HypeSquad.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/Keybinds.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/Language.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/LogOut.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/Merch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/MyAccount.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/Nitro.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/Notifications.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/Privacy&Safety.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/Profiles.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/RegisteredGames.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/ServerBoost.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/StreamerMode.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/Subscriptions.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/Text&Images.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/Voice&Video.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/WhatsNew.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Settings-Icons/WindowsSettings.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/badges.css: -------------------------------------------------------------------------------- 1 | .avatar_c19a55 + h3 > .headerText_c19a55 > .username_c19a55::after { 2 | display: inline-block; 3 | height: 14px; 4 | width: 14px; 5 | line-height: 14px; 6 | background-position: center; 7 | background-repeat: no-repeat; 8 | background-size: contain; 9 | background-image: url(''); 10 | position: relative; 11 | top: 2px; 12 | margin-left: 5px; 13 | } 14 | .avatar_c19a55 + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 15 | width: auto; 16 | border-radius: 4px; 17 | padding: 2px 5px; 18 | background-image: none!important; 19 | background-color: #0d0d0d; 20 | color: #fff; 21 | font-size: 12px; 22 | top: -1px; 23 | font-weight: normal; 24 | animation-timing-function: linear; 25 | transition: 26 | color .2s ease, 27 | background-color .2s ease; 28 | } 29 | 30 | @keyframes rainbow { 31 | from{filter: hue-rotate(0deg)} 32 | to{filter: hue-rotate(360deg);} 33 | } 34 | @keyframes scaleIn { 35 | from{transform: scale(.1);} 36 | to{transform: scale(1);} 37 | } 38 | @keyframes fadeIn { 39 | from{opacity: 0;} 40 | to{opacity: 1;} 41 | } 42 | 43 | /*cruxie*/ 44 | .avatar_c19a55[src*="332394843743584256"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 45 | background-image: url('https://i.imgur.com/D9NgKJs.png'); 46 | } 47 | .avatar_c19a55[src*="332394843743584256"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 48 | content: "meow"; 49 | animation: fadeIn .5s linear 1; 50 | color: #3ec23c; 51 | width: 35px; 52 | text-align: center; 53 | background-color: rgba(0, 0, 0, 0.3); 54 | } 55 | 56 | /* yura */ 57 | .avatar_c19a55[src*="517447785491070987"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 58 | background-image: url('https://cdn.discordapp.com/attachments/706165692608806933/708809414437634089/YinYangCats.gif');} 59 | .avatar_c19a55[src*="517447785491070987"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 60 | content: "Cutie"; 61 | background-color: #fa73ff; 62 | color: #fff; 63 | animation: scaleIn .2s linear 1; 64 | } 65 | 66 | /*limesharkbot*/ 67 | .avatar_c19a55[src*="828009658403913768"]+h3>headerText_f9f2ca>.username_c19a55::after { 68 | content: ""; 69 | background-image: url('https://i.imgur.com/D9NgKJs.png'); 70 | } 71 | .avatar_c19a55[src*="828009658403913768"]+h3>headerText_f9f2ca>.username_c19a55:hover::after { 72 | content: "bip boop"; 73 | color: #4ce949; 74 | } 75 | 76 | /* Nooody */ 77 | .avatar_c19a55[src*="206167460997496836"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 78 | background-image: url('https://i.imgur.com/yuLqs2v.png'); 79 | } 80 | .avatar_c19a55[src*="206167460997496836"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 81 | content: "Best sysadmin ever"; 82 | animation: scaleIn .2s linear 1; 83 | background-color: #99ccff; 84 | color: #fff; 85 | } 86 | 87 | /* four */ 88 | .avatar_c19a55[src*="707721584382836808"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 89 | height: 14px; 90 | width: 30px; 91 | line-height: 14px; 92 | background-repeat: no-repeat; 93 | background-position: left, right; 94 | background-size: contain; 95 | background-image: url('https://i.imgur.com/YP2x642.gif'), url('https://cdn.discordapp.com/emojis/804379282218549268.gif'); 96 | } 97 | .avatar_c19a55[src*="707721584382836808"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 98 | content: "The illusion | BMO"; 99 | color: white; 100 | background-color: black; 101 | width: auto; 102 | } 103 | 104 | /* paz */ 105 | .avatar_c19a55[src*="131990779890630656"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 106 | background-image: url('https://paz.pw/99ffb022a3097a2dc21e751c279cd38a.png');} 107 | .avatar_c19a55[src*="131990779890630656"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 108 | content: "peachy.host"; 109 | color: #ffa500; 110 | background-color: black; 111 | } 112 | 113 | /* bonziu */ 114 | .avatar_c19a55[src*="852987980758253648"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 115 | background-image: url('https://cdn.discordapp.com/emojis/840719301416976385.gif?');} 116 | .avatar_c19a55[src*="852987980758253648"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 117 | content: "YALLA"; 118 | color: blue; 119 | background-color: transparent; 120 | } 121 | 122 | /* liolanse */ 123 | .avatar_c19a55[src*="156049484151914496"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 124 | background-image: url('https://cdn.discordapp.com/attachments/728163710614634508/847498957046284338/hadpadastolo.gif');} 125 | .avatar_c19a55[src*="156049484151914496"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 126 | content: "Trap"; 127 | color: #000000; 128 | background-color: #E368dd; 129 | } 130 | 131 | /* beast */ 132 | .avatar_c19a55[src*="484743472306192385"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 133 | background-image: url('https://cdn.discordapp.com/emojis/497136740486873108.gif?v=1');} 134 | .avatar_c19a55[src*="484743472306192385"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 135 | content: "Beast"; 136 | color: white; 137 | background-color: green; 138 | } 139 | 140 | /* p0rtl */ 141 | .avatar_c19a55[src*="258731845267619840"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 142 | background-image: url('https://i.imgur.com/eXtjvv3.gif');} 143 | .avatar_c19a55[src*="258731845267619840"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 144 | content: "D̷̨͋o̵̯̍ǩ̶̛k̵̔̀a̸̋͛ḙ̵͘b̶̆̓i̶̽̈"; 145 | color: #c100ff; 146 | background-color: transparent; 147 | } 148 | 149 | /* thoomin */ 150 | .avatar_c19a55[src*="248910149442338816"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 151 | background-image: url('https://cdn.discordapp.com/emojis/667395143266992128.gif?v=1');} 152 | .avatar_c19a55[src*="248910149442338816"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 153 | content: "One with the force"; 154 | color: white; 155 | background-color: black; 156 | } 157 | 158 | /* Gaming4thefuture */ 159 | .avatar_c19a55[src*="531292687345778709"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 160 | background-image: url('https://cdn.discordapp.com/attachments/633906616747687937/845138486474571776/YLG.gif');} 161 | .avatar_c19a55[src*="531292687345778709"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 162 | content: ""; 163 | color: black; 164 | background-color: gold; 165 | } 166 | 167 | /* vanillaspace */ 168 | .avatar_c19a55[src*="227648235097817089"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 169 | background-image: url('https://cdn.discordapp.com/emojis/705612765561094174.png');} 170 | .avatar_c19a55[src*="227648235097817089"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 171 | content: "5 Star Trader"; 172 | color: white; 173 | animation: scaleIn .2s linear 1; 174 | background-color: #2eb82e; 175 | } 176 | 177 | /* Anthony Decoux */ 178 | .avatar_c19a55[src*="344137897492086804"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 179 | background-image: url('http://adx74.fr/assets/img/ad_logo.svg');} 180 | .avatar_c19a55[src*="344137897492086804"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 181 | content: "adx74.fr"; 182 | animation: scaleIn .2s linear 1; 183 | } 184 | 185 | /* Chewboko */ 186 | .avatar_c19a55[src*="239506110363467797"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 187 | background-image: url('https://i.imgur.com/n4CLusQ.png');} 188 | .avatar_c19a55[src*="239506110363467797"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 189 | content: "Chewy"; 190 | color: white; 191 | background-color: #b300cc; 192 | animation: scaleIn .2s linear 1; 193 | } 194 | 195 | /* w1zard*/ 196 | .avatar_c19a55[src*="285569855506219018"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 197 | background-image: url('https://i.imgur.com/ZeJRRH0.gif'); 198 | width: 25px; 199 | height: 25px; 200 | } 201 | .avatar_c19a55[src*="285569855506219018"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 202 | content: ""; 203 | background-image: url('https://i.imgur.com/ZeJRRH0.gif') !important; 204 | width: 25px; 205 | height: 25px; 206 | padding: 0; 207 | top: 1px; 208 | background-color: transparent; 209 | } 210 | 211 | /* Board™ */ 212 | .avatar_c19a55[src*="285475344817848320"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 213 | background-image: url('https://i.imgur.com/mF4drhn.gif'); 214 | } 215 | .avatar_c19a55[src*="285475344817848320"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 216 | content: "The One and only Board"; 217 | animation: scaleIn .2s linear 1; 218 | } 219 | 220 | /* TechieC */ 221 | .avatar_c19a55[src*="492077614404730903"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 222 | background-image: url('https://cdn.discordapp.com/attachments/703240281155436554/708721981280878682/e-logo-glitched.gif'); 223 | border-radius: 5px;} 224 | .avatar_c19a55[src*="492077614404730903"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 225 | content: "CodedotSpectra Help Team"; 226 | animation: scaleIn .2s linear 1; 227 | } 228 | 229 | /* Azael */ 230 | .avatar_c19a55[src*="323030822267518977"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 231 | background-image: url('https://cdn.discordapp.com/attachments/697502924837748818/723255763228688465/0dd78ced986cdeaafffcbea04389b75a.png'); 232 | border-radius: 5px;} 233 | .avatar_c19a55[src*="323030822267518977"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 234 | content: "Vanilla"; 235 | color: #fff; 236 | text-shadow: 0px 0px 5px #000; 237 | animation: scaleIn .2s linear 1; 238 | background-color: transparent; 239 | background-image: linear-gradient(to right, #2193b0, #6dd5ed) !important; 240 | } 241 | 242 | /* Akashii */ 243 | .avatar_c19a55[src*="495604921534775306"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 244 | background-image: url('https://cdn.discordapp.com/attachments/697502924837748818/723453087011962930/300905816292211_colored_toned.png'); 245 | border-radius: 5px;} 246 | .avatar_c19a55[src*="495604921534775306"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 247 | content: "Chocola"; 248 | animation: scaleIn .2s linear 1; 249 | background-color: #ff0066; 250 | } 251 | 252 | /* 初音美玖 (∩ ͡° ͜ʖ ͡°)⊃━☆゚. * */ 253 | .avatar_c19a55[src*="591994499069116417"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 254 | background-image: url('https://cdn.discordapp.com/attachments/716088201181397012/723526611776962560/159257248826988995.png'); 255 | border-radius: 5px;} 256 | .avatar_c19a55[src*="591994499069116417"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 257 | content: "Pro Wii + Wii U Modder"; 258 | animation: scaleIn .2s linear 1; 259 | } 260 | 261 | /* KarinnHaru */ 262 | .avatar_c19a55[src*="365136623668690944"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 263 | background-image: url('https://cdn.discordapp.com/attachments/696581398533767228/733778563970367508/unknown.png');} 264 | .avatar_c19a55[src*="365136623668690944"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 265 | content: "Meinar"; 266 | background-color: #55ff50; 267 | color: #000; 268 | animation: scaleIn .2s linear 1; 269 | } 270 | 271 | /* zxzxcv */ 272 | .avatar_c19a55[src*="507149114488651797"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 273 | background-image: url('https://cdn.discordapp.com/emojis/767098858357522432.gif?v=1');} 274 | .avatar_c19a55[src*="507149114488651797"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 275 | content: "Pro Among Us Player"; 276 | animation: scaleIn .2s linear 1; 277 | } 278 | 279 | /* ღHenbo */ 280 | .avatar_c19a55[src*="333187565559611393"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 281 | background-image: url('https://cdn.discordapp.com/emojis/759412412360425472.gif?v=1');} 282 | .avatar_c19a55[src*="333187565559611393"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 283 | content: "Pro Rager"; 284 | animation: scaleIn .2s linear 1; 285 | } 286 | 287 | /* nanyo */ 288 | .avatar_c19a55[src*="305064794183172119"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 289 | background-image: url('https://i.imgur.com/PzRlMc3.png');} 290 | .avatar_c19a55[src*="305064794183172119"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 291 | content: "Velox"; 292 | animation: scaleIn .2s linear 1; 293 | } 294 | 295 | /* DragonUnited */ 296 | .avatar_c19a55[src*="125807914794483712"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 297 | background-image: url('https://i.imgur.com/wADDz68.png');} 298 | .avatar_c19a55[src*="125807914794483712"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 299 | content: "The Dragon Uniter"; 300 | animation: scaleIn .2s linear 1; 301 | } 302 | 303 | /* Peach */ 304 | .avatar_c19a55[src*="273858357130035201"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 305 | background-image: url('https://cdn.discordapp.com/avatars/273858357130035201/1da9ffc96ddb3ee35ab8ba11470236e0.png');} 306 | .avatar_c19a55[src*="273858357130035201"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 307 | content: "PEACH"; 308 | animation: scaleIn .2s linear 1; 309 | } 310 | 311 | /* AshPikachu */ 312 | .avatar_c19a55[src*="294406287519776769"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 313 | background-image: url('https://cdn.discordapp.com/emojis/678757027987587091.gif?v=1');} 314 | .avatar_c19a55[src*="294406287519776769"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 315 | content: "RGB"; 316 | animation: scaleIn .2s linear 1; 317 | } 318 | 319 | /* ™Terrance */ 320 | .avatar_c19a55[src*="331230694841909248"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 321 | background-image: url('https://cdn.discordapp.com/emojis/635256436477132816.gif?v=1');} 322 | .avatar_c19a55[src*="331230694841909248"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 323 | content: "PANTOMATH"; 324 | animation: scaleIn .2s linear 1; 325 | } 326 | 327 | /* DarK' | */ 328 | .avatar_c19a55[src*="267316272650387457"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 329 | background-image: url('https://media.tenor.com/images/d6121704077cd3184bbf7ef69815d83d/tenor.gif');} 330 | .avatar_c19a55[src*="267316272650387457"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 331 | content: "Clown"; 332 | animation: scaleIn .2s linear 1; 333 | } 334 | 335 | /* firmin */ 336 | .avatar_c19a55[src*="416371373464748051"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 337 | background-image: url('https://cdn.discordapp.com/icons/741362812684861532/2468b05d6b609a3a1b6008af6d371477.png?size=2048');} 338 | .avatar_c19a55[src*="416371373464748051"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 339 | content: "NNetHeberg Staff"; 340 | animation: scaleIn .2s linear 1; 341 | } 342 | 343 | /* temp */ 344 | .avatar_c19a55[src*="351601894713589780"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 345 | background-image: url('https://discord.com/assets/4c5a77a89716352686f590a6f014770c.svg');} 346 | .avatar_c19a55[src*="351601894713589780"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 347 | content: "yo i'm m. pop everything had moulded inton vloaks"; 348 | color: white; 349 | background-color: #DA70D6; 350 | animation: scaleIn .2s linear 1; 351 | } 352 | 353 | /* geedee */ 354 | .avatar_c19a55[src*="295164014462369792"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 355 | background-image: url('https://raw.githubusercontent.com/MrGeeDee/remi-logo/main/remi.svg');} 356 | .avatar_c19a55[src*="295164014462369792"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 357 | content: "Remi User"; 358 | color: white; 359 | background-color: #d94126; 360 | animation: scaleIn .2s linear 1; 361 | } 362 | 363 | /* nass */ 364 | .avatar_c19a55[src*="788813671320518657"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 365 | background-image: url('https://upload.wikimedia.org/wikipedia/commons/c/c3/Python-logo-notext.svg');} 366 | .avatar_c19a55[src*="788813671320518657"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 367 | content: "Python Developer"; 368 | color: white; 369 | background-color: #387be0; 370 | animation: scaleIn .2s linear 1; 371 | } 372 | 373 | /* joshix */ 374 | .avatar_c19a55[src*="564843886434975745"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 375 | background-image: url('https://www.svgrepo.com/show/295320/checkmark.svg');} 376 | .avatar_c19a55[src*="564843886434975745"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 377 | content: "Checked"; 378 | color: white; 379 | background-color: #00b8e6; 380 | animation: scaleIn .2s linear 1; 381 | } 382 | 383 | /* FantomFancy */ 384 | .avatar_c19a55[src*="731225522075336755"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 385 | background-image: url('https://www.svgrepo.com/show/314867/link-alternative.svg');} 386 | .avatar_c19a55[src*="731225522075336755"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 387 | content: "HFE"; 388 | color: white; 389 | background-color: #e68200; 390 | animation: scaleIn .2s linear 1; 391 | } 392 | 393 | /* Predator */ 394 | .avatar_c19a55[src*="716628359345471538"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 395 | background-image: url('https://cdn.discordapp.com/attachments/795200201399730194/803155165368680458/iron-man57.png');} 396 | .avatar_c19a55[src*="716628359345471538"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 397 | content: "Love you 3000"; 398 | color: #ffa939; 399 | background-color: #af0000; 400 | animation: scaleIn .2s linear 1; 401 | } 402 | 403 | /* Keiran */ 404 | .avatar_c19a55[src*="287883914398400514"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 405 | background-image: url('https://raw.githubusercontent.com/MrGeeDee/remi-logo/main/remi.svg');} 406 | .avatar_c19a55[src*="287883914398400514"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 407 | content: "Remi User"; 408 | color: white; 409 | background-color: #d94126; 410 | animation: scaleIn .2s linear 1; 411 | } 412 | 413 | /* cookster */ 414 | .avatar_c19a55[src*="340900973490995200"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 415 | background-image: url('https://raw.githubusercontent.com/ImTehCookie/discordShit/90c9fc4082312ab05fa29cfd9eb436e071fafa8a/kisscc0-chocolate-chip-cookie-black-and-white-cookie-cooki-cookie-5b25d3d4cfdc10.1350345715292057168514.svg');} 416 | .avatar_c19a55[src*="340900973490995200"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 417 | content: "Remi User"; 418 | color: white; 419 | background-color: #a35629; 420 | animation: scaleIn .2s linear 1; 421 | } 422 | 423 | /* slinkous */ 424 | .avatar_c19a55[src*="492431284279181322"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 425 | background-image: url('https://upload.wikimedia.org/wikipedia/commons/a/a5/Archlinux-icon-crystal-64.svg');} 426 | .avatar_c19a55[src*="492431284279181322"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 427 | content: "I use Arch, btw"; 428 | color: white; 429 | background-color: #1a81cb; 430 | animation: scaleIn .2s linear 1; 431 | } 432 | 433 | /* derMiepz */ 434 | .avatar_c19a55[src*="141932909480116224"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 435 | background-image: url('https://cdn.discordapp.com/emojis/403546459561000961.png');} 436 | .avatar_c19a55[src*="141932909480116224"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 437 | content: " StreamElements | It's better."; 438 | color: white; 439 | background-color: #cc0000; 440 | animation: scaleIn .2s linear 1; 441 | } 442 | 443 | /* Vince */ 444 | .avatar_c19a55[src*="723977420364840970"]+h3>headerText_f9f2ca>.username_c19a55::after { 445 | content: ""; 446 | background-image: url('https://cdn.discordapp.com/attachments/808009671423164437/808328899166863400/697995591921172532.gif'); 447 | } 448 | .avatar_c19a55[src*="723977420364840970"]+h3>headerText_f9f2ca>.username_c19a55:hover::after { 449 | content: "Don't do anything"; 450 | color: black; 451 | background-color: #fff; 452 | animation: scaleIn .2s linear 1; 453 | } 454 | 455 | /* Please? */ 456 | .avatar_c19a55[src*="723055594403004458"]+h3>headerText_f9f2ca>.username_c19a55::after { 457 | content: ""; 458 | background-image: url('https://ch3rry.red/images/mufUFttb1.png'); 459 | } 460 | .avatar_c19a55[src*="723055594403004458"]+h3>headerText_f9f2ca>.username_c19a55:hover::after { 461 | content: "Heartbeat"; 462 | color: black; 463 | background-color: #e85656; 464 | animation: scaleIn .2s linear 1; 465 | } 466 | 467 | /* ebullience */ 468 | .avatar_c19a55[src*="755163362400403507"]+h3>headerText_f9f2ca>.username_c19a55::after { 469 | content: ""; 470 | background-image: url('https://cdn.discordapp.com/attachments/755167341024641175/827913766733479936/YhTayI1.gif'); 471 | } 472 | .avatar_c19a55[src*="755163362400403507"]+h3>headerText_f9f2ca>.username_c19a55:hover::after { 473 | content: "UGB Admin"; 474 | background-color: #000; 475 | color: red; 476 | animation: scaleIn .2s linear 1, rainbow 5s linear infinite; 477 | } 478 | 479 | /* slaplog */ 480 | .avatar_c19a55[src*="470265348260757511"]+h3>headerText_f9f2ca>.username_c19a55::after { 481 | content: ""; 482 | background-image: url('https://cdn.discordapp.com/emojis/796627278507278367.png'); 483 | } 484 | 485 | .avatar_c19a55[src*="470265348260757511"]+h3>headerText_f9f2ca>.username_c19a55:hover::after { 486 | content: "Bruh Cult"; 487 | background-color: rgb(29, 87, 233); 488 | color: white; 489 | animation: scaleIn .2s linear 1; 490 | } 491 | 492 | /* potatoking */ 493 | .avatar_c19a55[src*="265400036509220866"]+h3>headerText_f9f2ca>.username_c19a55::after { 494 | content: ""; 495 | background-image: url('https://media.discordapp.net/attachments/512011694310948877/829859789538197524/yentThonkThinkSpin.gif'); 496 | } 497 | .avatar_c19a55[src*="265400036509220866"]+h3>headerText_f9f2ca>.username_c19a55:hover::after { 498 | content: "Potato"; 499 | background-color: #eeeeee; 500 | color: #00aa7f; 501 | animation: scaleIn .2s linear 1; 502 | } 503 | 504 | /* blazerod */ 505 | .avatar_c19a55[src*="766759403365597235"]+h3>headerText_f9f2ca>.username_c19a55::after { 506 | content: ""; 507 | background-image: url('https://teamcofh.com/assets/images/thermal-foundation-2/basalz-powder.gif'); 508 | } 509 | 510 | .avatar_c19a55[src*="766759403365597235"]+h3>headerText_f9f2ca>.username_c19a55:hover::after { 511 | content: "Exist"; 512 | background-color: #ff0400; 513 | color: #FFD700; 514 | animation: scaleIn .2s linear 1; 515 | } 516 | 517 | /* germ */ 518 | .avatar_c19a55[src*="769719386407567360"]+h3>headerText_f9f2ca>.username_c19a55::after { 519 | content: ""; 520 | background-image: url('https://cdn.discordapp.com/attachments/842194096848371727/842195197101342776/32ce812355e09cd9b958b7da9f6269ba.png'); 521 | } 522 | 523 | .avatar_c19a55[src*="769719386407567360"]+h3>headerText_f9f2ca>.username_c19a55:hover::after { 524 | content: "sOb"; 525 | background-color: #001cff; 526 | color: #000000; 527 | animation: scaleIn .2s linear 1; 528 | } 529 | 530 | /* Keiretsu */ 531 | .avatar_c19a55[src*="514436990234656779"]+h3>headerText_f9f2ca>.username_c19a55::after { 532 | content: ""; 533 | background-image: url('https://i.imgur.com/B4GXxr2.gif'); 534 | } 535 | 536 | .avatar_c19a55[src*="514436990234656779"]+h3>headerText_f9f2ca>.username_c19a55:hover::after { 537 | content: "chika"; 538 | background-color: #181c25; 539 | color: #ffffff; 540 | animation: scaleIn .2s linear 1; 541 | } 542 | 543 | /* The Flamer */ 544 | .avatar_c19a55[src*="462658397951623168"]+h3>headerText_f9f2ca>.username_c19a55::after { 545 | content: ""; 546 | background-image: url('https://i.ibb.co/T1gYqYX/The-Flamer-Logo.png'); 547 | } 548 | 549 | .avatar_c19a55[src*="462658397951623168"]+h3>headerText_f9f2ca>.username_c19a55:hover::after { 550 | content: "The Flamer"; 551 | background-color: #000000; 552 | color: #FF0000; 553 | animation: scaleIn .2s linear 1; 554 | } 555 | 556 | /* wolfie */ 557 | .avatar_c19a55[src*="282978672711827456"]+h3>headerText_f9f2ca>.username_c19a55::after { 558 | content: ""; 559 | background-image: url('https://cdn.discordapp.com/emojis/842827641824477225.gif'); 560 | } 561 | 562 | .avatar_c19a55[src*="282978672711827456"]+h3>headerText_f9f2ca>.username_c19a55:hover::after { 563 | content: "Best dev u will meet"; 564 | background-color: #03ffea; 565 | color: #ffffff; 566 | animation: scaleIn .2s linear 1; 567 | } 568 | 569 | /* kusakave */ 570 | .avatar_c19a55[src*="153617374388551680"]+h3>headerText_f9f2ca>.username_c19a55::after { 571 | content: ""; 572 | background-image: url('https://cdn.discordapp.com/attachments/843498694149013506/852992322023194634/Primogem.png'); 573 | } 574 | 575 | .avatar_c19a55[src*="153617374388551680"]+h3>headerText_f9f2ca>.username_c19a55:hover::after { 576 | content: "Always a Leviathan"; 577 | background-color: #9932CC; 578 | color: #ffffff; 579 | animation: scaleIn .2s linear 1; 580 | } 581 | 582 | /* hola peter */ 583 | .avatar_c19a55[src*="721831770173079554"]+h3>headerText_f9f2ca>.username_c19a55::after { 584 | content: ""; 585 | background-image: url('https://cdn.discordapp.com/attachments/793127494806798387/875061390652624906/codedotspectrabadge.png'); 586 | } 587 | 588 | .avatar_c19a55[src*="721831770173079554"]+h3>headerText_f9f2ca>.username_c19a55:hover::after { 589 | content: "Absolute Queen"; 590 | background-color: #fcd400; 591 | color: #000; 592 | animation: scaleIn .2s linear 1; 593 | } 594 | 595 | /* madmagic */ 596 | .avatar_c19a55[src*="401795293797941290"]+h3>headerText_f9f2ca>.username_c19a55::after { 597 | content: ""; 598 | background-image: url('https://media.discordapp.net/attachments/851706940673359873/886279724119236639/1631375796596.png'); 599 | } 600 | 601 | .avatar_c19a55[src*="401795293797941290"]+h3>headerText_f9f2ca>.username_c19a55:hover::after { 602 | content: "Shark King"; 603 | background-color: #0071fd; 604 | color: #000; 605 | animation: scaleIn .2s linear 1; 606 | } 607 | 608 | /* christian */ 609 | .avatar_c19a55[src*="226447651917266944"]+h3>headerText_f9f2ca>.username_c19a55::after { 610 | content: ""; 611 | background-image: url('https://i.imgur.com/4HFMrJ3.png'); 612 | } 613 | 614 | .avatar_c19a55[src*="226447651917266944"]+h3>headerText_f9f2ca>.username_c19a55:hover::after { 615 | content: "swag"; 616 | background-color: #252628; 617 | color: #fff; 618 | animation: scaleIn .2s linear 1; 619 | } 620 | 621 | /* Sypher */ 622 | .avatar_c19a55[src*="321332200668790786"]+h3>headerText_f9f2ca>.username_c19a55::after { 623 | content: ""; 624 | background-image: url('https://i.imgur.com/7kQcv3Q.gif'); 625 | } 626 | 627 | .avatar_c19a55[src*="321332200668790786"]+h3>headerText_f9f2ca>.username_c19a55:hover::after { 628 | content: "Synergy Development"; 629 | animation: scaleIn .2s linear 1; 630 | background-color: transparent; 631 | color: #d078ff; 632 | } 633 | 634 | /*90gq29*/ 635 | .avatar_c19a55[src*="548537815026106390"]+h3>headerText_f9f2ca>.username_c19a55::after { 636 | content: ""; 637 | background-image: url('https://i.imgur.com/Gw2Rr0E.png'); 638 | } 639 | 640 | .avatar_c19a55[src*="548537815026106390"]+h3>headerText_f9f2ca>.username_c19a55:hover::after { 641 | content: "Sus?"; 642 | animation: fadeIn .5s linear 1; 643 | color: #ff8080; 644 | width: 75px; 645 | text-align: center; 646 | background-color: transparent; 647 | background-image: url('https://i.imgur.com/bzmEwnm.png') !important; 648 | } 649 | 650 | /*vatican*/ 651 | .avatar_c19a55[src*="531167082243686433"]+h3>headerText_f9f2ca>.username_c19a55::after { 652 | content: ""; 653 | background-image: url('https://cdn.discordapp.com/attachments/840032147444203550/977663573050400878/ring.gif'); 654 | } 655 | 656 | .avatar_c19a55[src*="531167082243686433"]+h3>headerText_f9f2ca>.username_c19a55:hover::after { 657 | content: ""; 658 | animation: fadeIn .5s linear 1; 659 | color: red; 660 | width: 75px; 661 | text-align: center; 662 | background-color: black; 663 | } 664 | 665 | /*==|STREAMERS|==*/ 666 | /* mesicek */ 667 | .avatar_c19a55[src*="812242528677396491"] + h3 > .headerText_c19a55 > .username_c19a55::after { 668 | content: ""; 669 | background-image: url('https://i.imgur.com/DgupKzH.png'); 670 | } 671 | .avatar_c19a55[src*="812242528677396491"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 672 | content: "twitch.tv/moonie_ww"; 673 | animation: scaleIn .2s linear 1; 674 | background-color: #6441a5; 675 | color: #fff; 676 | } 677 | /* RubenSaurus */ 678 | .avatar_c19a55[src*="156048565058142208"] + h3 > .headerText_c19a55 > .username_c19a55::after { 679 | content: ""; 680 | background-image: url('https://i.imgur.com/DgupKzH.png'); 681 | } 682 | .avatar_c19a55[src*="156048565058142208"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 683 | content: "twitch.tv/rubensaurus"; 684 | animation: scaleIn .2s linear 1; 685 | background-color: #6441a5; 686 | color: #fff; 687 | } 688 | 689 | /* yummy */ 690 | .avatar_c19a55[src*="747918201613975673"] + h3 > .headerText_c19a55 > .username_c19a55::after { 691 | content: ""; 692 | background-image: url('https://i.imgur.com/DgupKzH.png'); 693 | } 694 | .avatar_c19a55[src*="747918201613975673"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 695 | content: "twitch.tv/yumsta"; 696 | animation: scaleIn .2s linear 1; 697 | background-color: #6441a5; 698 | color: #fff; 699 | } 700 | 701 | /* yb_concept */ 702 | .avatar_c19a55[src*="412185847379525632"] + h3 > .headerText_c19a55 > .username_c19a55::after { 703 | content: ""; 704 | background-image: url('https://i.imgur.com/DgupKzH.png'); 705 | } 706 | .avatar_c19a55[src*="412185847379525632"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 707 | content: "twitch.tv/yb_concept"; 708 | animation: scaleIn .2s linear 1; 709 | background-color: #6441a5; 710 | color: #fff; 711 | } 712 | 713 | /* valentinbraem */ 714 | .avatar_c19a55[src*="577574927893266433"] + h3 > .headerText_c19a55 > .username_c19a55::after { 715 | content: ""; 716 | background-image: url('https://i.imgur.com/DgupKzH.png'); 717 | } 718 | .avatar_c19a55[src*="577574927893266433"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 719 | content: "twitch.tv/valentinbraem"; 720 | animation: scaleIn .2s linear 1; 721 | background-color: #6441a5; 722 | color: #fff; 723 | } 724 | 725 | /* Mr.Nate */ 726 | .avatar_c19a55[src*="600047402807721984"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 727 | background-image: url('https://i.imgur.com/DgupKzH.png');} 728 | .avatar_c19a55[src*="600047402807721984"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 729 | content: "twitch.tv/nategaming9535"; 730 | animation: scaleIn .2s linear 1; 731 | background-color: #6441a5; 732 | color: #fff; 733 | } 734 | 735 | /* [TLGC] はっぉ */ 736 | .avatar_c19a55[src*="233592823562240000"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 737 | background-image: url('https://i.imgur.com/DgupKzH.png');} 738 | .avatar_c19a55[src*="233592823562240000"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 739 | content: "twitch.tv/noobmaster108"; 740 | animation: scaleIn .2s linear 1; 741 | background-color: #6441a5; 742 | color: #fff; 743 | } 744 | 745 | /* YoiLikeOrange */ 746 | .avatar_c19a55[src*="222915166319280128"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 747 | background-image: url('https://i.imgur.com/DgupKzH.png');} 748 | .avatar_c19a55[src*="222915166319280128"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 749 | content: "twitch.tv/yoilikeorange"; 750 | animation: scaleIn .2s linear 1; 751 | background-color: #6441a5; 752 | color: #fff; 753 | } 754 | 755 | /* jsjhax34 */ 756 | .avatar_c19a55[src*="591994499069116417"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 757 | background-image: url('https://i.imgur.com/DgupKzH.png');} 758 | .avatar_c19a55[src*="591994499069116417"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 759 | content: "twitch.tv/jsjfree34"; 760 | animation: scaleIn .2s linear 1; 761 | background-color: #6441a5; 762 | color: #fff; 763 | } 764 | 765 | /* andreww */ 766 | .avatar_c19a55[src*="255805278753259521"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 767 | background-image: url('https://i.imgur.com/DgupKzH.png');} 768 | .avatar_c19a55[src*="255805278753259521"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 769 | content: "twitch.tv/moonie_ww"; 770 | animation: scaleIn .2s linear 1; 771 | background-color: #6441a5; 772 | color: #fff; 773 | } 774 | 775 | /* 𝖖𝖚𝖎𝖉𝕿 */ 776 | .avatar_c19a55[src*="414104522592485378"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 777 | background-image: url('https://i.imgur.com/DgupKzH.png');} 778 | .avatar_c19a55[src*="414104522592485378"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 779 | content: "twitch.tv/quidT_"; 780 | animation: scaleIn .2s linear 1; 781 | background-color: #6441a5; 782 | color: #fff; 783 | } 784 | 785 | /* betaRGB */ 786 | .avatar_c19a55[src*="131496952947802112"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 787 | background-image: url('https://i.imgur.com/DgupKzH.png');} 788 | .avatar_c19a55[src*="131496952947802112"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 789 | content: "twitch.tv/betargb"; 790 | animation: scaleIn .2s linear 1; 791 | background-color: #6441a5; 792 | color: #fff; 793 | } 794 | 795 | /* LaunchpadByMike */ 796 | .avatar_c19a55[src*="324511224291393538"]+h3>headerText_f9f2ca>.username_c19a55::after { 797 | content: ""; 798 | background-image: url('https://i.imgur.com/DgupKzH.png'); 799 | } 800 | 801 | .avatar_c19a55[src*="324511224291393538"]+h3>headerText_f9f2ca>.username_c19a55:hover::after { 802 | content: "twitch.tv/launchpadbymike"; 803 | animation: scaleIn .2s linear 1; 804 | background-color: #6441a5; 805 | color: #fff; 806 | } 807 | 808 | /* Airtroops */ 809 | .avatar_c19a55[src*="389250525952081921"] + h3 > .headerText_c19a55 > .username_c19a55::after {content: ""; 810 | background-image: url('https://i.imgur.com/gCq2G2o.png'); 811 | width: 25px; height: 25px; 812 | } 813 | .avatar_c19a55[src*="389250525952081921"] + h3 > .headerText_c19a55 > .username_c19a55:hover::after { 814 | content: ""; 815 | background-image: url('https://i.imgur.com/gCq2G2o.png') !important; 816 | width: 25px; 817 | height: 25px; 818 | padding: 0; 819 | top: 0; 820 | background-color: transparent; 821 | } 822 | -------------------------------------------------------------------------------- /core/custom-font.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --font-primary: var(--customFont), "gg sans"; 3 | --font-display: var(--customFont), "gg sans"; 4 | } 5 | 6 | ::placeholder, 7 | body, 8 | button, 9 | input, 10 | select, 11 | textarea { 12 | font-family: var(--customFont) !important; 13 | } -------------------------------------------------------------------------------- /core/hideactivenow.css: -------------------------------------------------------------------------------- 1 | .nowPlayingColumn_c2739c { 2 | position: relative; 3 | left: 350px ; 4 | opacity: 1; 5 | margin-left: -350px; 6 | transition: .3s all ease-out; 7 | } 8 | .nowPlayingColumn_c2739c:hover { 9 | left: 0 ; 10 | opacity: 1; 11 | margin-left: 0; 12 | transition: .3s all ease-out; 13 | } -------------------------------------------------------------------------------- /core/hljs.css: -------------------------------------------------------------------------------- 1 | 2 | :root { 3 | --backgroundCode: #2f3136; 4 | --backgroundName: #202225; 5 | } 6 | 7 | .markup_f8f345 pre { 8 | position: relative; 9 | border-radius: 6px; 10 | } 11 | 12 | .modalTextContainer_d8e2d0, 13 | .textContainer_d8e2d0, 14 | .markup_f8f345 code.hljs, 15 | .markup_f8f345 code.hljs.inline { 16 | box-sizing: border-box; 17 | padding-top: 20px; 18 | position: relative; 19 | border: none; 20 | scrollbar-color: var(--backgroundCode) var(--backgroundName); 21 | background: var(--backgroundCode) !important; 22 | } 23 | 24 | .footer_d8e2d0, 25 | .markup_f8f345 code, 26 | .markup_f8f345 code.inline { 27 | box-sizing: border-box; 28 | scrollbar-color: var(--backgroundCode) var(--backgroundName); 29 | background: var(--backgroundCode) !important; 30 | } 31 | 32 | .textContainer_d8e2d0 { 33 | overflow: hidden; 34 | } 35 | 36 | .languageSelector_d8e2d0 { 37 | background: var(--backgroundCode); 38 | } 39 | 40 | .hljs { 41 | padding-left: 30px !important; 42 | overflow: hidden; 43 | } 44 | 45 | .hljs::before { 46 | content: ""; 47 | padding: 1px 7px 1px 30px; 48 | position: absolute; 49 | top: 0; 50 | left: -1px; 51 | z-index: 2; 52 | color: #ccc; 53 | background: var(--backgroundName); 54 | background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAMAAABHPGVmAAAA+VBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9BnGuhAAAAUnRSTlMAAgMEBRobHB0eHyAkJSYnKS0uMzc4OTpFRkdISUpLTFBRUlNUVldYWW9wcXJzdHV2d3p7f4CBh4iJioyNjo+oq8XGx8je3+Hj5Oru9vf4+fr8vTsUbAAAAjdJREFUeAHt2VlPU1EUxfElqGhxEBykUBRwQJECVdGCs0hVpLXd3//DGOLqzbXbuPZ5OImB83/l4ZcTsrKTW5TORKVSabrLbiBfl43dQr7uGruAfD2mMTyHfLWJfEXG3hP5hIx9JPIBGftC5A0y9p3IBvJ1fkTkwWncYtnixjX8vXdEPsN1/SmS2rejudQtzh3ZfpphVGJbpGFUwgaV8BbnTwwqYeNEmY9vkQaVuEEltMWbP2zcHgK9sKpBC5PdMXYR9ZZ/WtXz2DvY8QJcj8ZbnMIfLRybeIs29BabfadEjGboLqYre1bVb8otakUbcota0Ub6XVwUijL8FqWijMXAXdSKMPRd5BZdSzWlGzf0FrXijaXwXdSKNvQWtSINvUWt7IJ1haG26GoNaoo3WnDpLWqFhr8feotxZVcZeotaCf1D3F2ckUjfql4DHasaroAlbtG1MrSqDqAVtUVh7ABa0Vt0rXoD2NGK3qIwtKK3KAynrMa3qIxtIFmZHm/xYarBtgPKJbVFYWhF3EVhxBW5xbWasQWfVvQW10fSALaEIraoDaespW7xiTTYK6sa3MNkB/zTW8B3353DyFtG68Etune0IWp7RW8x0fjXqZwxdhuTLQ+s6iVY7C292egWr36zcZsI1faG3OJsL2ywzd9GI75FKjTiymEjbYuNHo24QiO2RSqH9iz5U5TYovgU9d9+RxVbTE/fxVy5LWZIbFFXftPI0cFp+U2jbDGpKx02hVKpVDoL/QKk+Asua0/jMQAAAABJRU5ErkJggg==") !important; 55 | background-size: 15px; 56 | background-position: 8px center; 57 | background-repeat: no-repeat; 58 | width: calc(100% + 2px); 59 | height: 20px; 60 | line-height: 20px; 61 | box-sizing: border-box; 62 | font-weight: bold; 63 | } 64 | 65 | .hljs::after { 66 | content: "1\a 2\a 3\a 4\a 5\a 6\a 7\a 8\a 9\a 10\a 11\a 12\a 13\a 14\a 15\a 16\a 17\a 18\a 19\a 20\a 21\a 22\a 23\a 24\a 25\a 26\a 27\a 28\a 29\a 30\a 31\a 32\a 33\a 34\a 35\a 36\a 37\a 38\a 39\a 40\a 41\a 42\a 43\a 44\a 45\a 46\a 47\a 48\a 49\a 50\a 51\a 52\a 53\a 54\a 55\a 56\a 57\a 58\a 59\a 60\a 61\a 62\a 63\a 64\a 65\a 66\a 67\a 68\a 69\a 70\a 71\a 72\a 73\a 74\a 75\a 76\a 77\a 78\a 79\a 80\a 81\a 82\a 83\a 84\a 85\a 86\a 87\a 88\a 89\a 90\a 91\a 92\a 93\a 94\a 95\a 96\a 97\a 98\a 99\a 100\a 101\a 102\a 103\a 104\a 105\a 106\a 107\a 108\a 109\a 110\a 111\a 112\a 113\a 114\a 115\a 116\a 117\a 118\a 119\a 120\a 121\a 122\a 123\a 124\a 125\a 126\a 127\a 128\a 129\a 130\a 131\a 132\a 133\a 134\a 135\a 136\a 137\a 138\a 139\a 140\a 141\a 142\a 143\a 144\a 145\a 146\a 147\a 148\a 149\a 150\a 151\a 152\a 153\a 154\a 155\a 156\a 157\a 158\a 159\a 160\a 161\a 162\a 163\a 164\a 165\a 166\a 167\a 168\a 169\a 170\a 171\a 172\a 173\a 174\a 175\a 176\a 177\a 178\a 179\a 180\a 181\a 182\a 183\a 184\a 185\a 186\a 187\a 188\a 189\a 190\a 191\a 192\a 193\a 194\a 195\a 196\a 197\a 198\a 199\a 200\a 201\a 202\a 203\a 204\a 205\a 206\a 207\a 208\a 209\a 210\a 211\a 212\a 213\a 214\a 215\a 216\a 217\a 218\a 219\a 220\a 221\a 222\a 223\a 224\a 225\a 226\a 227\a 228\a 229\a 230\a 231\a 232\a 233\a 234\a 235\a 236\a 237\a 238\a 239\a 240\a 241\a 242\a 243\a 244\a 245\a 246\a 247\a 248\a 249\a 250\a 251\a 252\a 253\a 254\a 255\a 256\a 257\a 258\a 259\a 260\a 261\a 262\a 263\a 264\a 265\a 266\a 267\a 268\a 269\a 270\a 271\a 272\a 273\a 274\a 275\a 276\a 277\a 278\a 279\a 280\a 281\a 282\a 283\a 284\a 285\a 286\a 287\a 288\a 289\a 290\a 291\a 292\a 293\a 294\a 295\a 296\a 297\a 298\a 299\a 300\a 301\a 302\a 303\a 304\a 305\a 306\a 307\a 308\a 309\a 310\a 311\a 312\a 313\a 314\a 315\a 316\a 317\a 318\a 319\a 320\a 321\a 322\a 323\a 324\a 325\a 326\a 327\a 328\a 329\a 330\a 331\a 332\a 333\a 334\a 335\a 336\a 337\a 338\a 339\a 340\a 341\a 342\a 343\a 344\a 345\a 346\a 347\a 348\a 349\a 350\a 351\a 352\a 353\a 354\a 355\a 356\a 357\a 358\a 359\a 360\a 361\a 362\a 363\a 364\a 365\a 366\a 367\a 368\a 369\a 370\a 371\a 372\a 373\a 374\a 375\a 376\a 377\a 378\a 379\a 380\a 381\a 382\a 383\a 384\a 385\a 386\a 387\a 388\a 389\a 390\a 391\a 392\a 393\a 394\a 395\a 396\a 397\a 398\a 399\a 400\a 401\a 402\a 403\a 404\a 405\a 406\a 407\a 408\a 409\a 410\a 411\a 412\a 413\a 414\a 415\a 416\a 417\a 418\a 419\a 420\a 421\a 422\a 423\a 424\a 425\a 426\a 427\a 428\a 429\a 430\a 431\a 432\a 433\a 434\a 435\a 436\a 437\a 438\a 439\a 440\a 441\a 442\a 443\a 444\a 445\a 446\a 447\a 448\a 449\a 450\a 451\a 452\a 453\a 454\a 455\a 456\a 457\a 458\a 459\a 460\a 461\a 462\a 463\a 464\a 465\a 466\a 467\a 468\a 469\a 470\a 471\a 472\a 473\a 474\a 475\a 476\a 477\a 478\a 479\a 480\a 481\a 482\a 483\a 484\a 485\a 486\a 487\a 488\a 489\a 490\a 491\a 492\a 493\a 494\a 495\a 496\a 497\a 498\a 499\a 500\a 501\a 502\a 503\a 504\a 505\a 506\a 507\a 508\a 509\a 510\a 511\a 512\a 513\a 514\a 515\a 516\a 517\a 518\a 519\a 520\a 521\a 522\a 523\a 524\a 525\a 526\a 527\a 528\a 529\a 530\a 531\a 532\a 533\a 534\a 535\a 536\a 537\a 538\a 539\a 540\a 541\a 542\a 543\a 544\a 545\a 546\a 547\a 548\a 549\a 550\a 551\a 552\a 553\a 554\a 555\a 556\a 557\a 558\a 559\a 560\a 561\a 562\a 563\a 564\a 565\a 566\a 567\a 568\a 569\a 570\a 571\a 572\a 573\a 574\a 575\a 576\a 577\a 578\a 579\a 580\a 581\a 582\a 583\a 584\a 585\a 586\a 587\a 588\a 589\a 590\a 591\a 592\a 593\a 594\a 595\a 596\a 597\a 598\a 599\a 600\a 601\a 602\a 603\a 604\a 605\a 606\a 607\a 608\a 609\a 610\a 611\a 612\a 613\a 614\a 615\a 616\a 617\a 618\a 619\a 620\a 621\a 622\a 623\a 624\a 625\a 626\a 627\a 628\a 629\a 630\a 631\a 632\a 633\a 634\a 635\a 636\a 637\a 638\a 639\a 640\a 641\a 642\a 643\a 644\a 645\a 646\a 647\a 648\a 649\a 650\a 651\a 652\a 653\a 654\a 655\a 656\a 657\a 658\a 659\a 660\a 661\a 662\a 663\a 664\a 665\a 666\a 667\a 668\a 669\a 670\a 671\a 672\a 673\a 674\a 675\a 676\a 677\a 678\a 679\a 680\a 681\a 682\a 683\a 684\a 685\a 686\a 687\a 688\a 689\a 690\a 691\a 692\a 693\a 694\a 695\a 696\a 697\a 698\a 699\a 700\a 701\a 702\a 703\a 704\a 705\a 706\a 707\a 708\a 709\a 710\a 711\a 712\a 713\a 714\a 715\a 716\a 717\a 718\a 719\a 720\a 721\a 722\a 723\a 724\a 725\a 726\a 727\a 728\a 729\a 730\a 731\a 732\a 733\a 734\a 735\a 736\a 737\a 738\a 739\a 740\a 741\a 742\a 743\a 744\a 745\a 746\a 747\a 748\a 749\a 750\a 751\a 752\a 753\a 754\a 755\a 756\a 757\a 758\a 759\a 760\a 761\a 762\a 763\a 764\a 765\a 766\a 767\a 768\a 769\a 770\a 771\a 772\a 773\a 774\a 775\a 776\a 777\a 778\a 779\a 780\a 781\a 782\a 783\a 784\a 785\a 786\a 787\a 788\a 789\a 790\a 791\a 792\a 793\a 794\a 795\a 796\a 797\a 798\a 799\a 800\a 801\a 802\a 803\a 804\a 805\a 806\a 807\a 808\a 809\a 810\a 811\a 812\a 813\a 814\a 815\a 816\a 817\a 818\a 819\a 820\a 821\a 822\a 823\a 824\a 825\a 826\a 827\a 828\a 829\a 830\a 831\a 832\a 833\a 834\a 835\a 836\a 837\a 838\a 839\a 840\a 841\a 842\a 843\a 844\a 845\a 846\a 847\a 848\a 849\a 850\a 851\a 852\a 853\a 854\a 855\a 856\a 857\a 858\a 859\a 860\a 861\a 862\a 863\a 864\a 865\a 866\a 867\a 868\a 869\a 870\a 871\a 872\a 873\a 874\a 875\a 876\a 877\a 878\a 879\a 880\a 881\a 882\a 883\a 884\a 885\a 886\a 887\a 888\a 889\a 890\a 891\a 892\a 893\a 894\a 895\a 896\a 897\a 898\a 899\a 900\a 901\a 902\a 903\a 904\a 905\a 906\a 907\a 908\a 909\a 910\a 911\a 912\a 913\a 914\a 915\a 916\a 917\a 918\a 919\a 920\a 921\a 922\a 923\a 924\a 925\a 926\a 927\a 928\a 929\a 930\a 931\a 932\a 933\a 934\a 935\a 936\a 937\a 938\a 939\a 940\a 941\a 942\a 943\a 944\a 945\a 946\a 947\a 948\a 949\a 950\a 951\a 952\a 953\a 954\a 955\a 956\a 957\a 958\a 959\a 960\a 961\a 962\a 963\a 964\a 965\a 966\a 967\a 968\a 969\a 970\a 971\a 972\a 973\a 974\a 975\a 976\a 977\a 978\a 979\a 980\a 981\a 982\a 983\a 984\a 985\a 986\a 987\a 988\a 989\a 990\a 991\a 992\a 993\a 994\a 995\a 996\a 997\a 998\a 999\a"; 67 | width: 17px; 68 | padding: 20px 4px 0; 69 | position: absolute; 70 | left: 0; 71 | top: 0; 72 | text-align: right; 73 | line-height: 1.128rem; 74 | height: calc(100% - 20px); 75 | overflow: hidden; 76 | color: rgba(255, 255, 255, 0.75); 77 | -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 5px, black 11px); 78 | z-index: 1; 79 | } 80 | 81 | .hljs.css::before { 82 | content: "CSS"; 83 | } 84 | 85 | .hljs.js::before { 86 | content: "Javascript"; 87 | } 88 | 89 | .hljs.php::before { 90 | content: "PHP"; 91 | } 92 | 93 | .hljs.java::before { 94 | content: "Java"; 95 | } 96 | 97 | .hljs.csharp::before { 98 | content: "C#"; 99 | } 100 | 101 | .hljs.c::before { 102 | content: "C"; 103 | } 104 | 105 | .hljs.cpp::before { 106 | content: "C++"; 107 | } 108 | 109 | .hljs.coffeescript::before { 110 | content: "Coffeescript"; 111 | } 112 | 113 | .hljs.bash::before { 114 | content: "Bash"; 115 | } 116 | 117 | .hljs.bat::before { 118 | content: "Batch"; 119 | } 120 | 121 | .hljs.html::before { 122 | content: "HTML"; 123 | } 124 | 125 | .hljs.apache::before { 126 | content: "Apache"; 127 | } 128 | 129 | .hljs.diff::before { 130 | content: "Diff"; 131 | } 132 | 133 | .hljs.http::before { 134 | content: "HTTP"; 135 | } 136 | 137 | .hljs.json::before { 138 | content: "JSON"; 139 | } 140 | 141 | .hljs.markdown::before { 142 | content: "Markdown"; 143 | } 144 | 145 | .hljs.makfile::before { 146 | content: "Makefile"; 147 | } 148 | 149 | .hljs.nginx::before { 150 | content: "Nginx"; 151 | } 152 | 153 | .hljs.perl::before { 154 | content: "Perl"; 155 | } 156 | 157 | .hljs.properties::before { 158 | content: "Properties"; 159 | } 160 | 161 | .hljs.ruby::before { 162 | content: "Ruby"; 163 | } 164 | 165 | .hljs.python::before { 166 | content: "Python"; 167 | } 168 | 169 | .hljs.shell::before { 170 | content: "Shell"; 171 | } 172 | 173 | .hljs.sql::before { 174 | content: "SQL"; 175 | } 176 | 177 | .hljs.powershell::before { 178 | content: "PowerShell"; 179 | } 180 | 181 | .hljs.xml::before { 182 | content: "XML"; 183 | } 184 | 185 | .hljs.objectivec::before { 186 | content: "Objective-C"; 187 | } 188 | 189 | .hljs.CSS::before { 190 | content: "CSS"; 191 | } 192 | 193 | .hljs.py::before { 194 | content: "PY"; 195 | } 196 | 197 | .hljs.ts::before { 198 | content: "TypeScript"; 199 | } 200 | 201 | .hljs.typescript::before { 202 | content: "TypeScript"; 203 | } 204 | 205 | .hljs.scss::before { 206 | content: "SCSS"; 207 | } 208 | 209 | .hljs.sass::before { 210 | content: "SASS"; 211 | } 212 | 213 | .hljs.less::before { 214 | content: "Less CSS"; 215 | } 216 | 217 | .hljs.swift::before { 218 | content: "Swift"; 219 | } 220 | 221 | .hljs.autoit::before { 222 | content: "AutoIt"; 223 | } 224 | 225 | .hljs.basic::before { 226 | content: "BASIC"; 227 | } 228 | 229 | .hljs.lisp::before { 230 | content: "Lisp"; 231 | } 232 | 233 | .hljs.lua::before { 234 | content: "Lua"; 235 | } 236 | 237 | .hljs.m::before { 238 | content: "M"; 239 | } 240 | 241 | .hljs.javascript::before { 242 | content: "Javascript"; 243 | } 244 | 245 | .hljs.pascal::before { 246 | content: "Pascal"; 247 | } 248 | 249 | .hljs.clean::before { 250 | content: "Clean"; 251 | } 252 | 253 | .hljs.erlang::before { 254 | content: "Erlang"; 255 | } 256 | 257 | .hljs.fsharp::before { 258 | content: "F#"; 259 | } 260 | 261 | .hljs.kotlin::before { 262 | content: "Kotlin"; 263 | } 264 | 265 | .hljs.rs::before { 266 | content: "Rust"; 267 | } 268 | 269 | .hljs.rust::before { 270 | content: "Rust"; 271 | } 272 | 273 | .hljs.hs::before { 274 | content: "Haskell"; 275 | } 276 | 277 | .hljs.haskell::before { 278 | content: "Haskell"; 279 | } 280 | 281 | .hljs.go::before { 282 | content: "GO"; 283 | } 284 | 285 | .hljs.asciidoc::before { 286 | content: "AsciiDoc"; 287 | } 288 | 289 | .hljs.yaml::before { 290 | content: "YAML"; 291 | } 292 | 293 | .hljs.x86asm::before { 294 | content: "x86asm"; 295 | } 296 | 297 | .hljs.C::before { 298 | content: "C"; 299 | } 300 | 301 | .hljs.cs::before { 302 | content: "C#"; 303 | } 304 | 305 | .hljs.toml::before { 306 | content: "TOML"; 307 | } 308 | 309 | .hljs.scheme::before { 310 | content: "Scheme"; 311 | } 312 | 313 | .hljs.mips::before { 314 | content: "MIPS"; 315 | } 316 | 317 | .hljs.MIPS::before { 318 | content: "MIPS"; 319 | } 320 | 321 | .hljs.vb::before { 322 | content: "Visual Basic"; 323 | } 324 | 325 | .hljs.VB::before { 326 | content: "Visual Basic"; 327 | } 328 | 329 | .hljs.r::before { 330 | content: "R"; 331 | } 332 | 333 | .hljs.R::before { 334 | content: "R"; 335 | } 336 | 337 | .hljs.abnf::before { 338 | content: "ABNF"; 339 | } 340 | 341 | .hljs.accesslog::before { 342 | content: "accesslog"; 343 | } 344 | 345 | .hljs.arduino::before { 346 | content: "Arduino"; 347 | } 348 | 349 | .hljs.ino::before { 350 | content: "Ino"; 351 | } 352 | 353 | .hljs.armasm::before { 354 | content: "Armasm"; 355 | } 356 | 357 | .hljs.arm::before { 358 | content: "Arm"; 359 | } 360 | 361 | .hljs.avrasm::before { 362 | content: "Avrasm"; 363 | } 364 | 365 | .hljs.actionscript::before { 366 | content: "Actionscript"; 367 | } 368 | 369 | .hljs.as::before { 370 | content: "AS"; 371 | } 372 | 373 | .hljs.alan::before { 374 | content: "Alan"; 375 | } 376 | 377 | .hljs.angelscript::before { 378 | content: "Angelscript"; 379 | } 380 | 381 | .hljs.asc::before { 382 | content: "asc"; 383 | } 384 | 385 | .hljs.apacheconf::before { 386 | content: "Apache conf"; 387 | } 388 | 389 | .hljs.applescript::before { 390 | content: "Applescript"; 391 | } 392 | 393 | .hljs.osascript::before { 394 | content: "Osascript"; 395 | } 396 | 397 | .hljs.arcade::before { 398 | content: "Arcade"; 399 | } 400 | 401 | .hljs.adoc::before { 402 | content: "Adoc"; 403 | } 404 | 405 | .hljs.aspectj::before { 406 | content: "Aspectj"; 407 | } 408 | 409 | .hljs.autohotkey::before { 410 | content: "Autohotkey"; 411 | } 412 | 413 | .hljs.autoit::before { 414 | content: "Autoit"; 415 | } 416 | 417 | .hljs.awk::before { 418 | content: "awk"; 419 | } 420 | 421 | .hljs.mawk::before { 422 | content: "mawk"; 423 | } 424 | 425 | .hljs.gawk::before { 426 | content: "gawk"; 427 | } 428 | 429 | .hljs.sh::before { 430 | content: "sh"; 431 | } 432 | 433 | .hljs.zsh::before { 434 | content: "zsh"; 435 | } 436 | 437 | .hljs.angelscript::before { 438 | content: "Angelscript"; 439 | } 440 | 441 | .hljs.bbcode::before { 442 | content: "BBcode"; 443 | } 444 | 445 | .hljs.blade::before { 446 | content: "Blade"; 447 | } 448 | 449 | .hljs.bnf::before { 450 | content: "BNF"; 451 | } 452 | 453 | .hljs.h::before { 454 | content: "H"; 455 | } 456 | 457 | .hljs.hpp::before { 458 | content: "Hpp"; 459 | } 460 | 461 | .hljs.cc::before { 462 | content: "CC"; 463 | } 464 | 465 | .hljs.hh::before { 466 | content: "HH"; 467 | } 468 | 469 | .hljs[class*='h++']::before { 470 | content: "H++"; 471 | } 472 | 473 | .hljs[class*='1c']::before { 474 | content: "1C"; 475 | } 476 | 477 | .hljs[class*='4d']::before { 478 | content: "4D"; 479 | } 480 | 481 | .hljs.cxx::before { 482 | content: "CXX"; 483 | } 484 | 485 | .hljs.hxx::before { 486 | content: "HXX"; 487 | } 488 | 489 | .hljs.cal::before { 490 | content: "Cal"; 491 | } 492 | 493 | .hljs.cos::before { 494 | content: "Cos"; 495 | } 496 | 497 | .hljs.cls::before { 498 | content: "cls"; 499 | } 500 | 501 | .hljs.cmake::before { 502 | content: "cmake"; 503 | } 504 | 505 | .hljs[class*='cmake.in']::before { 506 | content: "cmake.in"; 507 | } 508 | 509 | .hljs.coq::before { 510 | content: "coq"; 511 | } 512 | 513 | .hljs.csp::before { 514 | content: "CSP"; 515 | } 516 | 517 | .hljs.csv::before { 518 | content: "csv"; 519 | } 520 | 521 | .hljs.capnproto::before { 522 | content: "capnproto"; 523 | } 524 | 525 | .hljs.capnp::before { 526 | content: "capnp"; 527 | } 528 | 529 | .hljs.chaos::before { 530 | content: "chaos"; 531 | } 532 | 533 | .hljs.kaos::before { 534 | content: "kaos"; 535 | } 536 | 537 | .hljs.chapel::before { 538 | content: "chapel"; 539 | } 540 | 541 | .hljs.chpl::before { 542 | content: "chpl"; 543 | } 544 | 545 | .hljs.cisco::before { 546 | content: "cisco"; 547 | } 548 | 549 | .hljs.clojure::before { 550 | content: "clojure"; 551 | } 552 | 553 | .hljs.clj::before { 554 | content: "clj"; 555 | } 556 | -------------------------------------------------------------------------------- /core/settings-icons-vencord.css: -------------------------------------------------------------------------------- 1 | .sidebar_c25c6d .side_a0 #bd-settings-sidebar .ui-bar-item:not(.role-3pGE29)::before, 2 | .side_a0 .item_a0:not(.role-3pGE29)::before { 3 | content: ""; 4 | width: 20px; 5 | height: 20px; 6 | background-size: contain !important; 7 | background-repeat: no-repeat; 8 | background-position: center; 9 | position: absolute; 10 | left: 9px; 11 | top: 50%; 12 | transform: translateY(-50%); 13 | opacity: .8; 14 | filter: invert(100%) 15 | } 16 | .side_a0[aria-label="User Settings"] .item_a0 {padding-left: 35px !important;} 17 | div[aria-label="GUILD_SETTINGS"] .side_a0 .item_a0 {padding-left: 10px;} 18 | 19 | .premiumLabel_ae3c77 svg {display: none;} 20 | .tabBarItemContainer_e7c031 svg{display:none;} 21 | .selectedBackground_ae3c77 {display: none;} 22 | .premiumTab_c10c74.item_a0.selected_a0.themed_a0 {background-color: #5865f2;} 23 | .premiumTab_c10c74.item_a0.selected_a0.themed_a0:hover {background-color: #5865f2;} 24 | 25 | /* User Settings */ 26 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(3)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/MyAccount.svg");} 27 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(4)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Profiles.svg");} 28 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(5)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Privacy&Safety.svg");} 29 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(6)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/FamilyCentre.svg");} 30 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(7)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/AuthorisedApps.svg");} 31 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(8)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Devices.svg");} 32 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(9)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Connections.svg");} 33 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(10)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Clips.svg");} 34 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(11)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/FriendRequests.svg");} 35 | /* Payment Settings */ 36 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(14)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Nitro.svg");} 37 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(15)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/ServerBoost.svg");} 38 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(16)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Subscriptions.svg");} 39 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(17)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/GiftInventory.svg");} 40 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(18)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Billing.svg");} 41 | /* App Settings */ 42 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(21)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Appearance.svg");} 43 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(22)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Accessibility.svg");} 44 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(23)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Voice&Video.svg");} 45 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(24)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Text&Images.svg");} 46 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(25)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Notifications.svg");} 47 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(26)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Keybinds.svg");} 48 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(27)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Language.svg");} 49 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(28)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/WindowsSettings.svg");} 50 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(29)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/StreamerMode.svg");} 51 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(30)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Advanced.svg");} 52 | /* Vencord discord settings */ 53 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(33)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/BDSettings.svg");} 54 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(34)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/BDPlugins.svg");} 55 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(35)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/BDThemes.svg");} 56 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(36)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/BDUpdates.svg");} 57 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(37)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Cloud.svg");} 58 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(38)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/BDCustomCSS.svg");} 59 | /* Activity Settings */ 60 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(41)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/ActivityPrivacy.svg");} 61 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(42)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/RegisteredGames.svg");} 62 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(43)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/GameOverlay.svg");} 63 | /* Misc */ 64 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(45)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/WhatsNew.svg");} 65 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(46)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Merch.svg");} 66 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(47)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/HypeSquad.svg");} 67 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(49)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/LogOut.svg");} 68 | -------------------------------------------------------------------------------- /core/settings-icons.css: -------------------------------------------------------------------------------- 1 | 2 | .sidebar_c25c6d .side_a0 #bd-settings-sidebar .ui-bar-item:not(.role-3pGE29)::before, 3 | .side_a0 .item_a0:not(.role-3pGE29)::before { 4 | content: ""; 5 | width: 20px; 6 | height: 20px; 7 | background-size: contain !important; 8 | background-repeat: no-repeat; 9 | background-position: center; 10 | position: absolute; 11 | left: 9px; 12 | top: 50%; 13 | transform: translateY(-50%); 14 | opacity: .8; 15 | filter: invert(100%) 16 | } 17 | .side_a0[aria-label="User Settings"] .item_a0 {padding-left: 35px !important;} 18 | div[aria-label="GUILD_SETTINGS"] .side_a0 .item_a0 {padding-left: 10px;} 19 | 20 | .premiumLabel_ae3c77 svg {display: none;} 21 | .tabBarItemContainer_e7c031 svg{display:none;} 22 | .selectedBackground_ae3c77 {display: none;} 23 | .premiumTab_c10c74.item_a0.selected_a0.themed_a0 {background-color: #5865f2;} 24 | .premiumTab_c10c74.item_a0.selected_a0.themed_a0:hover {background-color: #5865f2;} 25 | 26 | /* User Settings */ 27 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(3)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/MyAccount.svg");} 28 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(4)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Profiles.svg");} 29 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(5)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Privacy&Safety.svg");} 30 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(6)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/FamilyCentre.svg");} 31 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(7)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/AuthorisedApps.svg");} 32 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(8)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Devices.svg");} 33 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(9)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Connections.svg");} 34 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(10)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Clips.svg");} 35 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(11)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/FriendRequests.svg");} 36 | /* Payment Settings */ 37 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(14)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Nitro.svg");} 38 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(15)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/ServerBoost.svg");} 39 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(16)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Subscriptions.svg");} 40 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(17)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/GiftInventory.svg");} 41 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(18)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Billing.svg");} 42 | /* App Settings */ 43 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(21)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Appearance.svg");} 44 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(22)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Accessibility.svg");} 45 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(23)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Voice&Video.svg");} 46 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(24)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Text&Images.svg");} 47 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(25)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Notifications.svg");} 48 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(26)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Keybinds.svg");} 49 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(27)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Language.svg");} 50 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(28)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/WindowsSettings.svg");} 51 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(29)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/StreamerMode.svg");} 52 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(30)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Advanced.svg");} 53 | /* Activity Settings */ 54 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(33)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/ActivityPrivacy.svg");} 55 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(34)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/RegisteredGames.svg");} 56 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(35)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/GameOverlay.svg");} 57 | /* better discord settings */ 58 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(38)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/BDSettings.svg");} 59 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(39)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/BDUpdates.svg");} 60 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(40)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/BDCustomCSS.svg");} 61 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(41)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/BDPlugins.svg");} 62 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(42)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/BDThemes.svg");} 63 | /* Misc */ 64 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(44)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/WhatsNew.svg");} 65 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(46)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/HypeSquad.svg");} 66 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(47)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/Merch.svg");} 67 | .side_a0[aria-label="User Settings"] .item_a0:nth-child(48)::before {background-image: url("https://xcruxiex.github.io/themes/core/Settings-Icons/LogOut.svg");} 68 | -------------------------------------------------------------------------------- /themes-cores/neutron8.css: -------------------------------------------------------------------------------- 1 | @import url("https://xcruxiex.github.io/themes/core/custom-font.css"); 2 | @import url("https://nyri4.github.io/Discolored/main.css"); 3 | @import url("https://xcruxiex.github.io/themes/core/hljs.css"); 4 | 5 | :root { 6 | --themeColor1: #36D1DC; 7 | --themeColor2: #5B86E5; 8 | --font-display: var(--customFont); 9 | --homeImage: url('https://imgur.com/eItxuAq.png'); 10 | --homeImageSize: cover; 11 | --backgroundColor: #0d0d0d; 12 | --backgroundImage: url('https://imgur.com/qhBghXt.png'); 13 | --backgroundPosition: center; 14 | --backgroundSize: cover; 15 | --backgroundRepeat: no-repeat; 16 | --backgroundBlur: 100px; 17 | --backgroundOpacity: .65; 18 | --backgroundCode: rgba(0, 0, 0, .5); 19 | --backgroundName: rgba(0, 0, 0, .5); 20 | } 21 | 22 | .appMount__51fd7, 23 | body { 24 | background-color: var(--backgroundColor) !important 25 | } 26 | 27 | .bg__960e4 { 28 | background-color: transparent; 29 | background-position: var(--backgroundPosition); 30 | background-repeat: var(--backgroundRepeat); 31 | background-size: var(--backgroundSize); 32 | background-image: var(--backgroundImage); 33 | opacity: var(--backgroundOpacity); 34 | filter: blur(var(--backgroundBlur)) 35 | } 36 | 37 | .members_c8ffbb, 38 | .membersListNotices__0bcb6 { 39 | width: 100% !important; 40 | } 41 | 42 | .app__160d8, 43 | .applicationStore_f07d62, 44 | .chat_f75fb0, 45 | .container__133bf, 46 | .container__9293f.themed__9293f, 47 | .container__2637a, 48 | .container-PNkimc, 49 | .contentRegion__23e6b, 50 | .contentRegionScroller__23e6b, 51 | .header_adb41f, 52 | .inviteToolbar__133bf, 53 | .layer__960e4, 54 | .members_c8ffbb, 55 | .members_c8ffbb>div, 56 | .messages-3amgkR, 57 | .notice_c5cd6a, 58 | .nowPlayingColumn__133bf, 59 | .pageWrapper_a3a4ce, 60 | .panels_c48ade, 61 | .privateChannels__35e86, 62 | .scroller__4a84a, 63 | .wrapper__0d1ef, 64 | .wrapper_fc8177, 65 | .scroller__99e7c, 66 | .scroller-2TZvBN, 67 | .scroller_fb04e1, 68 | .scroller_ff90b2, 69 | .scroller__244e5, 70 | .sidebar_c48ade, 71 | .sidebarRegionScroller__23e6b, 72 | .standardSidebarView__23e6b, 73 | .wrapper-1Rf91z, 74 | .container__7d20c, 75 | .wrapper_cb9592, 76 | .wrapper_cb9592.minimum_cb9592, 77 | .wrapper-KXM2i0 { 78 | background: 0 0 !important 79 | } 80 | 81 | .children__9293f:after, 82 | .content_f75fb0:before, 83 | .form_f75fb0:before { 84 | display: none !important 85 | } 86 | 87 | .header-2o-2hj, 88 | .searchBar__35e86 { 89 | box-shadow: none !important 90 | } 91 | 92 | .tutorialContainer__1f388 .childWrapper__6e9f8 { 93 | background-color: transparent; 94 | background-position: center; 95 | background-repeat: no-repeat; 96 | background-image: var(--homeImage); 97 | background-size: var(--homeImageSize); 98 | background-clip: border-box 99 | } 100 | 101 | 102 | .tutorialContainer__1f388 .wrapper__8436d:hover .childWrapper__6e9f8 { 103 | background-color: var(--themeColor1) !important; 104 | } 105 | 106 | .tutorialContainer__1f388 .childWrapper__6e9f8>svg, 107 | .tutorialContainer__1f388 .childWrapper__6e9f8 .homeIcon-tEMBK1 { 108 | display: none 109 | } 110 | 111 | ::-webkit-scrollbar { 112 | border: none !important; 113 | width: 7px !important 114 | } 115 | 116 | ::-webkit-scrollbar-track { 117 | background: rgba(0, 0, 0, .05) !important; 118 | border: none !important 119 | } 120 | 121 | ::-webkit-scrollbar-track-piece { 122 | background: 0 0 !important; 123 | border: none !important 124 | } 125 | 126 | ::-webkit-scrollbar-thumb { 127 | background: rgba(0, 0, 0, .5) !important; 128 | border-radius: 50px !important; 129 | border: none !important 130 | } 131 | 132 | .scrollerThemed-2oenus.themeDark-2cjlUp .scroller-2FKFPG, 133 | .scrollerWrap-2lJEkd .scroller-2FKFPG { 134 | scrollbar-color: var(--backgroundColor) !important 135 | } 136 | 137 | .guildsError-b7zR5H { 138 | background-color: rgba(0, 0, 0, .5); 139 | color: var(--themeColor1) 140 | } 141 | 142 | .childWrapper__6e9f8 { 143 | background-color: rgba(0, 0, 0, .5); 144 | color: var(--themeColor2) 145 | } 146 | 147 | .childWrapper__6e9f8:hover { 148 | background-color: var(--themeColor2) !important; 149 | color: #fff; 150 | } 151 | 152 | .circleIconButton-1QV--U { 153 | background-color: rgba(0, 0, 0, .5); 154 | color: var(--themeColor1) 155 | } 156 | 157 | .circleIconButton-1QV--U:hover { 158 | background-color: var(--themeColor1); 159 | color: #fff; 160 | } 161 | 162 | .join-33Tr-7 .actionIcon-2IISM_ { 163 | background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MDcgMjE0LjUiPjxwYXRoIGQ9Ik02MS41IDIxMy41Yy0xMi42MSAwLTM2LjA5IDAtNTEuODQtNy4zNkExNi44NiAxNi44NiAwIDAxMCAxOTAuOTJ2LTEyYTE2Ljc0IDE2Ljc0IDAgMDExMC40NS0xNS41Nkw0OSAxNDcuNjV2LTUuOTNjLTI0LjczLTEwLTI4LjUtNDAuNTUtMjguNS01OC4yMkMyMC41IDQwLjExIDQzLjA3IDMxIDYyIDMxczQxLjUgOS4xMSA0MS41IDUyLjVjMCA0MC43NS0xNy4xNCA1NC4yNS0yOSA1OC43MXY1LjQ1bDM4LjA1IDE1LjcyQTE2Ljc1IDE2Ljc1IDAgMDExMjMgMTc4Ljk0djEyYTE2Ljg1IDE2Ljg1IDAgMDEtOS42NyAxNS4yMmMtMTUuNzQgNy4zNC0zOS4yMiA3LjM0LTUxLjgzIDcuMzR6TTYyIDM4Yy0yMy4yMSAwLTM0LjUgMTQuODgtMzQuNSA0NS41IDAgMzYuMTcgMTQuMiA0OC41IDI2LjExIDUyLjVsMi4zOS43OXYxNS42bC00Mi45IDE3LjQ3YTkuNzcgOS43NyAwIDAwLTYuMSA5LjA4djEyYTkuODIgOS44MiAwIDAwNS42MyA4Ljg3YzE0LjM3IDYuNjkgMzYuOCA2LjY5IDQ4Ljg3IDYuNjlzMzQuNTQgMCA0OC44Ny02LjcxYTkuODIgOS44MiAwIDAwNS42My04Ljg3di0xMmE5Ljc3IDkuNzcgMCAwMC02LjEtOS4wOGwtNDIuNC0xNy41di0xNS4yNmwyLjUxLS43NGMyMy02LjggMjYuNDktMzYgMjYuNDktNTIuODRDOTYuNSA1Mi44OCA4NS4yMSAzOCA2MiAzOHptMzE3LjUgMTc2LjVjLTEyLjYxIDAtMzYuMDkgMC01MS44NC03LjM2YTE2Ljg2IDE2Ljg2IDAgMDEtOS42Ni0xNS4yMnYtMTJhMTYuNzQgMTYuNzQgMCAwMTEwLjQ1LTE1LjU2TDM2NyAxNDguNjV2LTUuOTNjLTI0LjczLTEwLTI4LjUtNDAuNTUtMjguNS01OC4yMiAwLTQzLjM5IDIyLjU3LTUyLjUgNDEuNS01Mi41czQxLjUgOS4xMSA0MS41IDUyLjVjMCA0MC43NS0xNy4xNCA1NC4yNS0yOSA1OC43MXY1LjQ1bDM4LjA1IDE1LjcyQTE2Ljc1IDE2Ljc1IDAgMDE0NDEgMTc5Ljk0djEyYTE2Ljg1IDE2Ljg1IDAgMDEtOS42NyAxNS4yMmMtMTUuNzQgNy4zNC0zOS4yMiA3LjM0LTUxLjgzIDcuMzR6TTM4MCAzOWMtMjMuMjEgMC0zNC41IDE0Ljg4LTM0LjUgNDUuNSAwIDM2LjE3IDE0LjIgNDguNDkgMjYuMTEgNTIuNDZsMi4zOS43OXYxNS42bC00Mi45IDE3LjUxYTkuNzcgOS43NyAwIDAwLTYuMSA5LjA4djEyYTkuODIgOS44MiAwIDAwNS42MyA4Ljg3YzE0LjMzIDYuNzEgMzYuOCA2LjcxIDQ4Ljg3IDYuNzFzMzQuNTQgMCA0OC44Ny02LjcxYTkuODIgOS44MiAwIDAwNS42My04Ljg3di0xMmE5Ljc3IDkuNzcgMCAwMC02LjEtOS4wOGwtNDIuNC0xNy41MnYtMTUuMjZsMi41MS0uNzRjMjMuMDUtNi44IDI2LjQ5LTM2IDI2LjQ5LTUyLjg0IDAtMzAuNjItMTEuMjktNDUuNS0zNC41LTQ1LjV6IiBmaWxsPSIjMzNjYzMzIi8+PGcgb3BhY2l0eT0iLjUiIGZpbGw9IiMzM2NjMzMiPjxwYXRoIGQ9Ik00OTYuNTUgMTMyLjM4bC0zOC4wNS0xNS43MnYtNS40NWMxMS44Ni00LjQ2IDI5LTE4IDI5LTU4LjcxQzQ4Ny41IDkuMTEgNDY0LjkzIDAgNDQ2IDBjLTE1LjI4IDAtMzIuOTMgNi0zOS4xNyAzMS4wN2E0MS4xMiA0MS4xMiAwIDAxNi4wOCA0LjdDNDE2LjU5IDE2LjQ2IDQyNy41MSA3IDQ0NiA3YzIzLjIxIDAgMzQuNSAxNC44OCAzNC41IDQ1LjUgMCAxNi44MS0zLjQ0IDQ2LTI2LjQ5IDUyLjg0bC0yLjUxLjc0djE1LjI2bDQyLjM5IDE3LjUyYTkuNzcgOS43NyAwIDAxNi4xIDkuMDh2MTJhOS44MiA5LjgyIDAgMDEtNS42MyA4Ljg3Yy0xMy4xOSA2LjE3LTMzLjI2IDYuNjctNDUuNzggNi43MWEyNSAyNSAwIDAxLjQxIDQuNDR2Mi41NWMxMy4xMS0uMDUgMzMuOTUtLjYzIDQ4LjMzLTcuMzVhMTYuODUgMTYuODUgMCAwMDkuNjgtMTUuMjR2LTEyYTE2Ljc1IDE2Ljc1IDAgMDAtMTAuNDUtMTUuNTR6Ii8+PHBhdGggZD0iTTQyOC41MyAxMDAuMmMtLjMxIDIuNDktLjcyIDUtMS4yNCA3LjYxYTM3LjI5IDM3LjI5IDAgMDA1LjcxIDIuOTF2NS45M2wtOS4yOCAzLjc4YTYzLjIzIDYzLjIzIDAgMDEtNC4zNCA5LjM0bDIwLjYyLTguNDJ2LTE1LjZsLTIuMzktLjc5YTMxLjY4IDMxLjY4IDAgMDEtOS4wOC00Ljc2eiIvPjwvZz48ZyBvcGFjaXR5PSIuNSIgZmlsbD0iIzMzY2MzMyI+PHBhdGggZD0iTTMxOC41IDEwNi4wOHYxNS4yNmwyMy4wNyA5LjUzYTYwLjMgNjAuMyAwIDAxLTQuODYtOS41OGwtMTEuMjEtNC42M3YtNS40NWEzNi4yNiAzNi4yNiAwIDAwNy4xNS0zLjYzcS0uNzUtMy42NC0xLjI1LTcuNzFhMjkuMzggMjkuMzggMCAwMS0xMC40IDUuNDd6Ii8+PHBhdGggZD0iTTMxMCAxNzkuOTRhMjUuMTEgMjUuMTEgMCAwMS40MS00LjQ0Yy0xMi40MyAwLTMzLjI0LS4zNy00Ni43OC02LjcxYTkuODIgOS44MiAwIDAxLTUuNjMtOC44N3YtMTJhOS43NyA5Ljc3IDAgMDE2LjEtOS4wOGw0Mi45LTE3LjQ5di0xNS42bC0yLjM5LS43OUMyOTIuNyAxMDEgMjc4LjUgODguNjcgMjc4LjUgNTIuNSAyNzguNSAyMS44OCAyODkuNzkgNyAzMTMgN2MxOC43NSAwIDI5LjcyIDkuNzIgMzMuMjQgMjkuNTkuMTItLjEyLjI0LS4yNi4zNy0uMzhhNDAuODQgNDAuODQgMCAwMTUuNy00LjU4QzM0Ni4yIDYgMzI4LjQgMCAzMTMgMGMtMTguOTMgMC00MS41IDkuMTEtNDEuNSA1Mi41IDAgMTcuNjcgMy43NyA0OC4yMiAyOC41IDU4LjIydjUuOTNsLTM4LjU1IDE1LjczQTE2Ljc0IDE2Ljc0IDAgMDAyNTEgMTQ3Ljk0djEyYTE2Ljg2IDE2Ljg2IDAgMDA5LjY2IDE1LjIyQzI3NS40MiAxODIgMjk3IDE4Mi40NyAzMTAgMTgyLjV6Ii8+PC9nPjxwYXRoIGQ9Ik0yNDEuNTMgNDAuNjVDMjE3LjY2IDIyIDE5MSAxNiAxNjIuMTkgMjNhMTA5Ljc3IDEwOS43NyAwIDAwLTM2LjI5IDE2LjJsLTQuOC02LjRhMTE2LjM4IDExNi4zOCAwIDAxMzkuMjEtMTcuNTZjMjEuNS01LjIzIDUzLjktNi4xNiA4Ni4xNiAxOS4xMXoiIGZpbGw9IiMzM2NjMzMiLz48cGF0aCBkPSJNMjE3LjQ0IDU1LjIzbC0yLjg4LTcuNDYgMjguMDQtMTAuODYtNC41Ni0zMi44NiA3LjkyLTEuMSA1LjQ0IDM5LjE0LTMzLjk2IDEzLjE0eiIgZmlsbD0iIzMzY2MzMyIvPjwvc3ZnPg==) !important 164 | } 165 | 166 | .create-3jownz .actionIcon-2IISM_ { 167 | background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMDkuNjYgMjE0LjUiPjxwYXRoIGQ9Ik0yOTAuOTYgMjIuOTRWMy41aC05LjI5djE5LjQ0aC0xOC42OXY4Ljk2aDE4LjY5djE5LjZoOS4yOVYzMS45aDE4LjY5di04Ljk2aC0xOC42OXpNMTI4LjUgMjE0LjVjLTEyLjYxIDAtMzYuMDkgMC01MS44NC03LjM2QTE2Ljg2IDE2Ljg2IDAgMDE2NyAxOTEuOTJ2LTEyYTE2Ljc0IDE2Ljc0IDAgMDExMC40NS0xNS41NkwxMTYgMTQ4LjY1di01LjkzYy0yNC43My0xMC0yOC41LTQwLjU1LTI4LjUtNTguMjJDODcuNSA0MS4xMSAxMTAuMDcgMzIgMTI5IDMyczQxLjUgOS4xMSA0MS41IDUyLjVjMCA0MC43NS0xNy4xNCA1NC4yNS0yOSA1OC43MXY1LjQ1bDM4LjA1IDE1LjcyQTE2Ljc1IDE2Ljc1IDAgMDExOTAgMTc5Ljk0djEyYTE2Ljg1IDE2Ljg1IDAgMDEtOS42NyAxNS4yMmMtMTUuNzQgNy4zNC0zOS4yMiA3LjM0LTUxLjgzIDcuMzR6TTEyOSAzOWMtMjMuMjEgMC0zNC41IDE0Ljg4LTM0LjUgNDUuNSAwIDM2LjE3IDE0LjIgNDguNDkgMjYuMTEgNTIuNDZsMi4zOS43OXYxNS42bC00Mi45IDE3LjUxYTkuNzcgOS43NyAwIDAwLTYuMSA5LjA4djEyYTkuODIgOS44MiAwIDAwNS42MyA4Ljg3YzE0LjMzIDYuNzEgMzYuOCA2LjcxIDQ4Ljg3IDYuNzFzMzQuNTQgMCA0OC44Ny02LjcxYTkuODIgOS44MiAwIDAwNS42My04Ljg3di0xMmE5Ljc3IDkuNzcgMCAwMC02LjEtOS4wOGwtNDIuNC0xNy41MnYtMTUuMjZsMi41MS0uNzRjMjMuMDUtNi44IDI2LjQ5LTM2IDI2LjQ5LTUyLjg0IDAtMzAuNjItMTEuMjktNDUuNS0zNC41LTQ1LjV6IiBmaWxsPSIjZmZmIi8+PGcgb3BhY2l0eT0iLjUiIGZpbGw9IiNmZmYiPjxwYXRoIGQ9Ik0yNDUuNTUgMTMyLjM4bC0zOC4wNS0xNS43MnYtNS40NWMxMS44Ni00LjQ2IDI5LTE4IDI5LTU4LjcxQzIzNi41IDkuMTEgMjEzLjkzIDAgMTk1IDBjLTE1LjI4IDAtMzIuOTMgNi0zOS4xNyAzMS4wN2E0MS4xMiA0MS4xMiAwIDAxNi4wOCA0LjdDMTY1LjU5IDE2LjQ2IDE3Ni41MSA3IDE5NSA3YzIzLjIxIDAgMzQuNSAxNC44OCAzNC41IDQ1LjUgMCAxNi44MS0zLjQ0IDQ2LTI2LjQ5IDUyLjg0bC0yLjUxLjc0djE1LjI2bDQyLjM5IDE3LjUyYTkuNzcgOS43NyAwIDAxNi4xIDkuMDh2MTJhOS44MiA5LjgyIDAgMDEtNS42MyA4Ljg3Yy0xMy4xOSA2LjE3LTMzLjI2IDYuNjctNDUuNzggNi43MWEyNSAyNSAwIDAxLjQxIDQuNDR2Mi41NWMxMy4xMS0uMDUgMzMuOTUtLjYzIDQ4LjMzLTcuMzVhMTYuODUgMTYuODUgMCAwMDkuNjgtMTUuMjR2LTEyYTE2Ljc1IDE2Ljc1IDAgMDAtMTAuNDUtMTUuNTR6Ii8+PHBhdGggZD0iTTE3Ny41MyAxMDAuMmMtLjMxIDIuNDktLjcyIDUtMS4yNCA3LjYxYTM3LjI5IDM3LjI5IDAgMDA1LjcxIDIuOTF2NS45M2wtOS4yOCAzLjc4YTYzLjIzIDYzLjIzIDAgMDEtNC4zNCA5LjM0bDIwLjYyLTguNDJ2LTE1LjZsLTIuMzktLjc5YTMxLjY4IDMxLjY4IDAgMDEtOS4wOC00Ljc2eiIvPjwvZz48ZyBvcGFjaXR5PSIuNSIgZmlsbD0iI2ZmZiI+PHBhdGggZD0iTTY3LjUgMTA2LjA4djE1LjI2bDIzLjA3IDkuNTNhNjAuMyA2MC4zIDAgMDEtNC44Ni05LjU4bC0xMS4yMS00LjYzdi01LjQ1YTM2LjI2IDM2LjI2IDAgMDA3LjE1LTMuNjNxLS43NS0zLjY0LTEuMjUtNy43MWEyOS4zOCAyOS4zOCAwIDAxLTEwLjQgNS40N3oiLz48cGF0aCBkPSJNNTkgMTc5Ljk0YTI1LjExIDI1LjExIDAgMDEuNDEtNC40NGMtMTIuNDMgMC0zMy4yNC0uMzctNDYuNzgtNi43MUE5LjgyIDkuODIgMCAwMTcgMTU5Ljkydi0xMmE5Ljc3IDkuNzcgMCAwMTYuMS05LjA4TDU2IDEyMS4zNXYtMTUuNmwtMi4zOS0uNzVDNDEuNyAxMDEgMjcuNSA4OC42NyAyNy41IDUyLjUgMjcuNSAyMS44OCAzOC43OSA3IDYyIDdjMTguNzUgMCAyOS43MiA5LjcyIDMzLjI0IDI5LjU5LjEyLS4xMi4yNC0uMjYuMzctLjM4YTQwLjg0IDQwLjg0IDAgMDE1LjctNC41OEM5NS4yIDYgNzcuNCAwIDYyIDAgNDMuMDcgMCAyMC41IDkuMTEgMjAuNSA1Mi41YzAgMTcuNjcgMy43NyA0OC4yMiAyOC41IDU4LjIydjUuOTNsLTM4LjU1IDE1LjczQTE2Ljc0IDE2Ljc0IDAgMDAwIDE0Ny45NHYxMmExNi44NiAxNi44NiAwIDAwOS42NiAxNS4yMkMyNC40MiAxODIgNDYgMTgyLjQ3IDU5IDE4Mi41eiIvPjwvZz48L3N2Zz4=) !important 168 | } 169 | 170 | .expandedFolderBackground-1cujaW { 171 | background-color: rgba(0, 0, 0, .5) 172 | } 173 | 174 | .folder-1hbNCn { 175 | background-color: var(--backgroundColor); 176 | } 177 | 178 | .wrapper-21YSNc[aria-expanded=true] .listItem-2P_4kh .folder-21wGz3 { 179 | background-color: rgba(0, 0, 0, 0) 180 | } 181 | 182 | .iconBadge-2wi9r4.participating-NBGDkr { 183 | background-color: var(--themeColor1); 184 | background-image: linear-gradient(to bottom right, var(--themeColor1), var(--themeColor2)); 185 | animation-name: pulseVoiceChat; 186 | animation-duration: 1.5s; 187 | animation-timing-function: ease-in-out; 188 | animation-iteration-count: infinite 189 | } 190 | 191 | @keyframes pulseVoiceChat { 192 | 0% { 193 | box-shadow: 0 0 0 0 var(--themeColor1) 194 | } 195 | 196 | 50% { 197 | box-shadow: 0 0 10px 0 var(--themeColor1) 198 | } 199 | 200 | 100% { 201 | box-shadow: 0 0 0 0 var(--themeColor1) 202 | } 203 | } 204 | 205 | .css-123uooi-menu, 206 | .css-1b86x2o-control, 207 | .css-1o55ng5-control, 208 | .search-25t1e9 .searchBox-31Zv9h, 209 | .searchPage-3tt6dh .search-25t1e9 .searchBox-31Zv9h { 210 | background-color: var(--backgroundColor) 211 | } 212 | 213 | .search-25t1e9 .searchBox-31Zv9h:focus, 214 | .search-25t1e9 .searchBox-31Zv9h:focus-within { 215 | box-shadow: none 216 | } 217 | 218 | .searchPage-3tt6dh .search-25t1e9 .searchBox-31Zv9h:focus, 219 | .searchPage-3tt6dh .search-25t1e9 .searchBox-31Zv9h:focus-within { 220 | border-color: var(--themeColor1) 221 | } 222 | 223 | .categoryItem-3zFJns .itemInner-3gVXMG, 224 | .clickable__91a9d, 225 | .layout__91a9d { 226 | transition: all .2s ease 227 | } 228 | 229 | .categoryItem-3zFJns.selectedCategoryItem-3X8ujp .itemInner-3gVXMG, 230 | .clickable__91a9d:hover .layout__91a9d, 231 | .selected__91a9d .layout__91a9d { 232 | background: rgba(0, 0, 0, .65); 233 | position: relative; 234 | padding-left: 15px 235 | } 236 | 237 | .selected__91a9d .layout__91a9d::before { 238 | content: ""; 239 | position: absolute; 240 | left: -1px; 241 | top: 0; 242 | height: 100%; 243 | width: 20px; 244 | border-radius: 4px 0 0 4px; 245 | background: linear-gradient(to bottom right, var(--themeColor1), var(--themeColor2)); 246 | -webkit-mask: linear-gradient(to right, #000, Transparent); 247 | opacity: .6; 248 | z-index: 0 249 | } 250 | 251 | .selected__91a9d .layout__91a9d::after { 252 | content: ""; 253 | position: absolute; 254 | left: 0; 255 | top: 0; 256 | height: 100%; 257 | width: 5px; 258 | border-radius: 4px 0 0 4px; 259 | background: linear-gradient(to bottom right, var(--themeColor1), var(--themeColor2)); 260 | z-index: 1 261 | } 262 | 263 | .categoryPill-1zjNrr .categoryLabel-2m4AT- { 264 | color: #ccc; 265 | transition: all .2s ease 266 | } 267 | 268 | .categoryPill-1zjNrr:hover:not(.selected-bLcqYK) { 269 | background-color: rgba(0, 0, 0, .5) 270 | } 271 | 272 | .categoryPill-1zjNrr.selected-bLcqYK { 273 | background-color: var(--themeColor1); 274 | color: #fff; 275 | text-shadow: 0 1px 2px rgba(0, 0, 0, .5) 276 | } 277 | 278 | .card_e90879, 279 | .emojiContainer-1u-_sQ, 280 | .emptyContainer_e37a20, 281 | .iconMask_e90879 { 282 | background-color: var(--backgroundColor) !important 283 | } 284 | 285 | .pageControlContainer-3czZwE .lookFilled-yCfaCM.colorTransparent-13Bvvi { 286 | background-color: var(--backgroundColor); 287 | box-shadow: 0 2px 15px 0 rgba(0, 0, 0, .7) 288 | } 289 | 290 | .pageControlContainer-3czZwE .lookFilled-yCfaCM.colorTransparent-13Bvvi:disabled { 291 | background-color: var(--backgroundColor); 292 | opacity: .85 293 | } 294 | 295 | .pageControlContainer-3czZwE .lookFilled-yCfaCM.colorTransparent-13Bvvi:hover { 296 | background-color: var(--backgroundColor); 297 | box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .9) 298 | } 299 | 300 | .pageControlContainer-3czZwE .activeButton-1BJAiN, 301 | .pageControlContainer-3czZwE .activeButton-1BJAiN:hover { 302 | background-color: var(--themeColor1); 303 | box-shadow: 0 2px 15px 0 rgba(0, 0, 0, .5) 304 | } 305 | 306 | .pageControlContainer-3czZwE .roundButton-2CW1Hh { 307 | transition: background-color .1s ease; 308 | border-radius: 6px 309 | } 310 | 311 | .pageControlContainer-3czZwE .pageButton-MknE-_:hover { 312 | background-color: var(--backgroundColor) 313 | } 314 | 315 | .root__49fc1, 316 | .wrapper-2ZbzR9 { 317 | background-color: var(--backgroundColor); 318 | box-shadow: none !important 319 | } 320 | 321 | .slideBody-2nMrnU { 322 | padding: 24px 32px 323 | } 324 | 325 | .slideBody-2nMrnU .header-3ZP1MY { 326 | margin: 0 0 24px 0; 327 | width: 100%; 328 | color: var(--themeColor1) 329 | } 330 | 331 | .actions-pBaxX6 .action-1lSjCi { 332 | background-color: rgba(0, 0, 0, .45) 333 | } 334 | 335 | .actions-pBaxX6 .action-1lSjCi .colorStandard-21JIj7 { 336 | color: rgba(255, 255, 255, .7) 337 | } 338 | 339 | .name-3_Dsmg { 340 | color: #ccc 341 | } 342 | 343 | .modeMuted-3osy7j .icon-1_QxNX, 344 | .modeMuted-3osy7j .name-3_Dsmg { 345 | color: #8c8c8c 346 | } 347 | 348 | .wrapper__2ea32 .icon-WnO6o2, 349 | .wrapper__2ea32 .name-IbjUBS, 350 | .wrapper__2ea32.muted-1NRuDm:hover .icon-WnO6o2, 351 | .wrapper__2ea32.muted-1NRuDm:hover .name-IbjUBS, 352 | .wrapper__2ea32:hover .icon-WnO6o2, 353 | .wrapper__2ea32:hover .name-IbjUBS { 354 | color: var(--themeColor1); 355 | text-shadow: 0 1.5px 3px rgba(0, 0, 0, .75) 356 | } 357 | 358 | .containerDefault_c69b6d .link__2ea32 { 359 | transition: all .2s ease 360 | } 361 | 362 | .containerDefault_c69b6d.selected-37j_iU .modeSelected__2ea32 .link__2ea32, 363 | .containerDefault_c69b6d.selected-37j_iU .modeSelected__2ea32:hover .link__2ea32, 364 | .modeSelected__2ea32 .link__2ea32, 365 | .modeSelected__2ea32:hover .link__2ea32 { 366 | background-color: rgba(0, 0, 0, .65); 367 | position: relative; 368 | padding-left: 15px 369 | } 370 | 371 | .containerDefault_c69b6d.selected-37j_iU .modeSelected__2ea32 .link__2ea32::before, 372 | .modeSelected__2ea32 .link__2ea32::before, 373 | .modeSelected__2ea32:hover .link__2ea32::before { 374 | content: ""; 375 | position: absolute; 376 | left: -1px; 377 | top: 0; 378 | height: 100%; 379 | width: 20px; 380 | border-radius: 4px 0 0 4px; 381 | background: linear-gradient(to bottom right, var(--themeColor1), var(--themeColor2)); 382 | -webkit-mask: linear-gradient(to right, #000, Transparent); 383 | opacity: .6; 384 | z-index: 0 385 | } 386 | 387 | .modeSelected__2ea32 .link__2ea32::after { 388 | content: ""; 389 | position: absolute; 390 | left: 0; 391 | top: 0; 392 | height: 100%; 393 | width: 5px; 394 | border-radius: 4px 0 0 4px; 395 | background: linear-gradient(to bottom right, var(--themeColor1), var(--themeColor2)); 396 | z-index: 1 397 | } 398 | 399 | .containerDefault_c69b6d .wrapper__2ea32:hover .link__2ea32 { 400 | background-color: rgba(0, 0, 0, .45); 401 | padding-left: 12px 402 | } 403 | 404 | .users-i_3-kL { 405 | background-color: rgba(0, 0, 0, .35) 406 | } 407 | 408 | .total-3tKGEB { 409 | background-color: rgba(0, 0, 0, .75) 410 | } 411 | 412 | .total-3tKGEB:after { 413 | border-right-color: rgba(0, 0, 0, .75) 414 | } 415 | 416 | .centerButton_f1ceac { 417 | background-color: rgba(0, 0, 0, .5) 418 | } 419 | 420 | .centerButton_f1ceac:hover, 421 | .quickSelectPopout_ebaca5, 422 | .tooltipGrey-lpLZjh { 423 | background-color: var(--backgroundColor) !important 424 | } 425 | 426 | .tooltipGrey-lpLZjh .tooltipPointer-3L49xb { 427 | border-top-color: var(--backgroundColor) !important 428 | } 429 | 430 | .quickSelectPopoutOption_b852b1:hover { 431 | background-color: var(--backgroundColor) !important; 432 | box-shadow: inset 0 0 0 1000000px rgba(255, 255, 255, .05) 433 | } 434 | 435 | .friendSelected_bbd192, 436 | .tag_fea832 { 437 | background-color: var(--backgroundColor) !important; 438 | box-shadow: inset 0 0 0 1000000px rgba(255, 255, 255, .05) 439 | } 440 | 441 | .clickable-2ap7je .header-2o-2hj:hover, 442 | .selected-WP3kCM .header-2o-2hj { 443 | background-color: rgba(0, 0, 0, .25) 444 | } 445 | 446 | .descriptionBox-1EKQKL, 447 | .menu-Sp6bN1 { 448 | background-color: var(--backgroundColor) 449 | } 450 | 451 | .itemBase-1Qj4z6:hover { 452 | background-color: transparent 453 | } 454 | 455 | .itemBase-1Qj4z6 .label-1Y-LW5 { 456 | transition: padding .2s ease 457 | } 458 | 459 | .itemBase-1Qj4z6:hover .label-1Y-LW5 { 460 | padding-left: 12px 461 | } 462 | 463 | .activityPanel_c48ade, 464 | .container_e131a9 { 465 | border: none 466 | } 467 | 468 | .listDefault-2y5Z9D .clickable-23RaYz:hover .content-3xS9Lh { 469 | background-color: rgba(0, 0, 0, .5) 470 | } 471 | 472 | .listDefault-2y5Z9D .clickable-23RaYz.selected-3TGCSZ .content-3xS9Lh { 473 | background-color: rgba(0, 0, 0, .7) 474 | } 475 | 476 | .avatarSpeaking-3MqCHL { 477 | box-shadow: 0 0 0 2px var(--themeColor1), 0 0 10px 3px var(--themeColor2) 478 | } 479 | 480 | .border__2f4f7.speaking__2f4f7 { 481 | box-shadow: inset 0 0 0 2px var(--themeColor1) 482 | } 483 | 484 | .liveBadge__8c6c2 { 485 | background-color: var(--themeColor1); 486 | background-image: linear-gradient(to bottom right, var(--themeColor1), var(--themeColor2)); 487 | animation-name: pulseVoiceChat; 488 | animation-duration: 1.5s; 489 | animation-timing-function: ease-in-out; 490 | animation-iteration-count: infinite 491 | } 492 | 493 | @keyframes pulseVoiceChat { 494 | 0% { 495 | box-shadow: 0 0 0 0 var(--themeColor1) 496 | } 497 | 498 | 50% { 499 | box-shadow: 0 0 10px 0 var(--themeColor1) 500 | } 501 | 502 | 100% { 503 | box-shadow: 0 0 0 0 var(--themeColor1) 504 | } 505 | } 506 | 507 | .typeWindows__421ed, 508 | .winButton__421ed { 509 | height: 25px 510 | } 511 | 512 | .typeWindows__421ed { 513 | padding: 5px 0; 514 | margin: 0; 515 | box-sizing: border-box; 516 | background-color: var(--backgroundColor) 517 | } 518 | 519 | .typeWindows__421ed::after { 520 | content: ""; 521 | position: absolute; 522 | top: -14px; 523 | left: 0; 524 | width: 100%; 525 | height: 25px; 526 | background: radial-gradient(var(--themeColor1), var(--themeColor2), transparent 70%); 527 | opacity: .1 528 | } 529 | 530 | .winButton__421ed svg * { 531 | display: none 532 | } 533 | 534 | .winButton__421ed svg { 535 | position: absolute; 536 | top: 2.5px; 537 | background-position: center; 538 | background-repeat: no-repeat; 539 | background-size: 45% 45%; 540 | background-color: transparent 541 | } 542 | 543 | .winButton__421ed:hover { 544 | background-color: transparent 545 | } 546 | 547 | .winButtonMinMax__421ed:nth-child(3) svg { 548 | background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSIjRkZGRkZGIj48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTcgMTRINXY1aDV2LTJIN3YtM3ptLTItNGgyVjdoM1Y1SDV2NXptMTIgN2gtM3YyaDV2LTVoLTJ2M3pNMTQgNXYyaDN2M2gyVjVoLTV6Ii8+PC9zdmc+); 549 | background-position: center; 550 | background-size: 80%; 551 | background-repeat: no-repeat; 552 | border-radius: 50%; 553 | padding: 3px; 554 | transition: all .2s ease 555 | } 556 | 557 | .winButtonMinMax__421ed:nth-child(4) svg { 558 | background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/PjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjQ1OS4zMTNweCIgaGVpZ2h0PSI0NTkuMzE0cHgiIHZpZXdCb3g9IjAgMCA0NTkuMzEzIDQ1OS4zMTQiIHhtbDpzcGFjZT0icHJlc2VydmUiPiA8cGF0aCBmaWxsPSIjZmZmIiBkPSJNNDU5LjMxMywyMjkuNjQ4YzAsMjIuMjAxLTE3Ljk5Miw0MC4xOTktNDAuMjA1LDQwLjE5OUg0MC4xODFjLTExLjA5NCwwLTIxLjE0LTQuNDk4LTI4LjQxNi0xMS43NzQgQzQuNDk1LDI1MC44MDgsMCwyNDAuNzYsMCwyMjkuNjZjLTAuMDA2LTIyLjIwNCwxNy45OTItNDAuMTk5LDQwLjIwMi00MC4xOTNoMzc4LjkzNiBDNDQxLjMzMywxODkuNDcyLDQ1OS4zMDgsMjA3LjQ1Niw0NTkuMzEzLDIyOS42NDh6Ii8+PC9zdmc+); 559 | background-position: center; 560 | background-size: 45%; 561 | background-repeat: no-repeat; 562 | border-radius: 50%; 563 | padding: 3px; 564 | transition: all .2s ease 565 | } 566 | 567 | .winButtonClose__421ed svg { 568 | background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCAxMDAwIDEwMDAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDEwMDAgMTAwMCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTYzMi44LDQ5OS42bDMyOS4xLDMyOS4xYzM3LjUsMzcuNSwzNy41LDk1LjMsMCwxMzIuOGMtMTcuMywxNy4zLTQzLjMsMjguOS02Ni40LDI4LjljLTIzLjEsMC00OS4xLTExLjUtNjYuNC0yOC45TDUwMCw2MzIuNEwxNzAuOSw5NjEuNWMtMTcuMywxNy4zLTQzLjMsMjguOS02Ni40LDI4LjljLTIzLjEsMC00OS4xLTExLjUtNjYuNC0yOC45Yy0zNy41LTM3LjUtMzcuNS05NS4zLDAtMTMyLjhsMzI5LjEtMzI5LjFMMzguMSwxNzAuNkMwLjYsMTMzLDAuNiw3NS4zLDM4LjEsMzcuOGMzNy41LTM3LjUsOTUuMy0zNy41LDEzMi44LDBMNTAwLDM2Ni45TDgyOS4xLDM3LjhjMzcuNS0zNy41LDk1LjMtMzcuNSwxMzIuOCwwYzM3LjUsMzcuNSwzNy41LDk1LjMsMCwxMzIuOEw2MzIuOCw0OTkuNkw2MzIuOCw0OTkuNnoiLz48L3N2Zz4=); 569 | background-position: center; 570 | background-size: 55%; 571 | background-repeat: no-repeat; 572 | border-radius: 50%; 573 | padding: 3px; 574 | transition: all .2s ease 575 | } 576 | 577 | .localBot-GrCgVt:before { 578 | background-color: var(--themeColor1) 579 | } 580 | 581 | .localBot-GrCgVt { 582 | background-color: transparent 583 | } 584 | 585 | .divider__908e2 { 586 | border-top: thin solid rgba(0, 0, 0, .15) 587 | } 588 | 589 | .content__908e2 { 590 | background: var(--backgroundColor); 591 | color: #e6e6e6; 592 | padding: 2px 7px 593 | } 594 | 595 | .timestamp_c19a55 { 596 | color: #ccc !important 597 | } 598 | 599 | .operations_bab751>a { 600 | color: var(--themeColor1) !important 601 | } 602 | 603 | .hasMore-3e72_v { 604 | color: #fff; 605 | font-weight: 700; 606 | background-color: var(--themeColor2); 607 | transition: background-color .2s ease; 608 | box-shadow: none 609 | } 610 | 611 | .hasMore-3e72_v:hover { 612 | background-color: var(--themeColor1) 613 | } 614 | 615 | .newMessagesBar__0f481 { 616 | background-color: var(--themeColor1) 617 | } 618 | 619 | .jumpToPresentBar-9P20AM { 620 | background-color: var(--backgroundColor); 621 | opacity: .8 622 | } 623 | 624 | .isUnread__908e2 .content__908e2 { 625 | color: var(--themeColor1) 626 | } 627 | 628 | .wanderingCubesItem-3Us-UG { 629 | background-color: var(--themeColor1) 630 | } 631 | 632 | .wrapper_f316dd { 633 | background-color: var(--backgroundColor) !important 634 | } 635 | 636 | .audioControls_f316dd, 637 | .videoControls_f316dd { 638 | background-color: rgba(0, 0, 0, .75) 639 | } 640 | 641 | .mediaBarGrabber_f7877e, 642 | .mediaBarProgress_f7877e, 643 | .mediaBarProgress_f7877e:after, 644 | .mediaBarProgress_f7877e:before { 645 | background-image: linear-gradient(to top right, var(--themeColor1), var(--themeColor2)) 646 | } 647 | 648 | .fileWrapper__0ccae, 649 | .embedFull__623de, 650 | .wrapper_d5f3cd { 651 | background: rgba(0, 0, 0, .65); 652 | position: relative; 653 | overflow: hidden 654 | } 655 | 656 | .fileWrapper__0ccae { 657 | border: none 658 | } 659 | 660 | .fileWrapper__0ccae::after, 661 | .embedFull__623de::after, 662 | .wrapper_d5f3cd::after { 663 | content: ""; 664 | position: absolute; 665 | left: -5%; 666 | top: -5%; 667 | background-image: var(--backgroundImage); 668 | background-position: center; 669 | background-repeat: no-repeat; 670 | background-size: cover; 671 | background-attachment: fixed; 672 | opacity: .65; 673 | filter: blur(var(--backgroundBlur)); 674 | z-index: 0 675 | } 676 | 677 | .embedFull__623de .grid__623de { 678 | z-index: 1 679 | } 680 | 681 | .fileWrapper__0ccae>*, 682 | .wrapper_d5f3cd>* { 683 | z-index: 10; 684 | position: relative 685 | } 686 | 687 | .cancelButton__0ccae, 688 | .downloadButton__3fb6d, 689 | .metadata__0ccae { 690 | color: #ccc; 691 | transition: color .2s ease 692 | } 693 | 694 | .cancelButton__0ccae:hover, 695 | .downloadButton__3fb6d:hover { 696 | color: var(--themeColor1) 697 | } 698 | 699 | .embedSuppressButton__623de { 700 | right: 0 701 | } 702 | 703 | .reaction_f8896c { 704 | background-color: rgba(0, 0, 0, .55) 705 | } 706 | 707 | .reaction_f8896c.reactionMe_f8896c { 708 | background: 0 0; 709 | position: relative; 710 | z-index: 2 711 | } 712 | 713 | .reactionMe_f8896c .reactionCount-1zkLcN, 714 | .reactionMe_f8896c:hover .reactionCount-1zkLcN { 715 | color: var(--themeColor1) 716 | } 717 | 718 | .reaction_f8896c.reactionMe_f8896c::after { 719 | content: ""; 720 | position: absolute; 721 | left: 0; 722 | top: 0; 723 | width: 100%; 724 | height: 100%; 725 | background-color: var(--themeColor2); 726 | opacity: .15; 727 | border-radius: 4px; 728 | pointer-events: none 729 | } 730 | 731 | .contextMenu-HLZMGh, 732 | .wrapper_f7ecac { 733 | background-color: var(--backgroundColor) 734 | } 735 | 736 | .button_f7ecac.selected_f7ecac, 737 | .button_f7ecac:hover, 738 | .clickable-11uBi-:hover, 739 | .selected-BYpGTS { 740 | color: #fff; 741 | background-color: var(--themeColor2) 742 | } 743 | 744 | .button-1I8KM5 { 745 | background-color: var(--backgroundColor); 746 | box-shadow: inset 0 0 0 1000000px rgba(255, 255, 255, .05) 747 | } 748 | 749 | .button-1I8KM5:hover { 750 | background-color: var(--themeColor1) 751 | } 752 | 753 | .isUnread__908e2 { 754 | border-color: var(--themeColor1) 755 | } 756 | 757 | .unreadPill__908e2 { 758 | background-color: var(--themeColor1) 759 | } 760 | 761 | .unreadPillCap__908e2 .unreadPillCapStroke__908e2 { 762 | color: var(--themeColor1); 763 | fill: var(--themeColor1) 764 | } 765 | 766 | .newMessagesBar-mujexs { 767 | background-color: var(--themeColor2) 768 | } 769 | 770 | .channelTextArea_f75fb0, 771 | .scrollableContainer__74017 { 772 | background-color: var(--backgroundColor) 773 | } 774 | 775 | .attachWrapper__0923f { 776 | border: none 777 | } 778 | 779 | .membersGroup_c8ffbb { 780 | position: relative; 781 | z-index: 2; 782 | padding: 19px 8px 5px 16px; 783 | text-align: center; 784 | letter-spacing: 1px; 785 | color: #e6e6e6; 786 | border-bottom-width: 2px; 787 | border-style: solid; 788 | border-image: linear-gradient(to right, transparent, var(--themeColor1), var(--themeColor2), transparent) 1 789 | } 790 | 791 | .membersGroup_c8ffbb::after, 792 | .membersGroup_c8ffbb::before { 793 | content: ""; 794 | position: absolute; 795 | width: 50%; 796 | height: 100%; 797 | top: 0; 798 | background-color: transparent; 799 | z-index: -1 800 | } 801 | 802 | .membersGroup_c8ffbb::before { 803 | left: 0; 804 | box-shadow: 80px 50px 30px 0 var(--themeColor2) 805 | } 806 | 807 | .membersGroup_c8ffbb::after { 808 | right: 0; 809 | box-shadow: -80px 50px 30px 0 var(--themeColor1) 810 | } 811 | 812 | .membersGroup_c8ffbb span { 813 | text-shadow: 0 1px 5px #000 814 | } 815 | 816 | .activity__5d473 { 817 | color: #ccc 818 | } 819 | 820 | .clickable__91a9d:hover .layout__91a9d, 821 | .selected__91a9d .layout__91a9d { 822 | background-color: rgba(0, 0, 0, .45) 823 | } 824 | 825 | .root-SR8cQa, 826 | .userPopout-3XzG_A { 827 | background-color: rgba(0, 0, 0, .35); 828 | backdrop-filter: blur(50px); 829 | box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .2) !important 830 | } 831 | 832 | .body-3ND3kc, 833 | .body-3iLsc4, 834 | .bodyInner-245q0L, 835 | .footer-1fjuF6 { 836 | background: 0 0 !important 837 | } 838 | 839 | .quickMessage-1yeL4E { 840 | background-color: rgba(0, 0, 0, .5) !important; 841 | border-color: rgba(0, 0, 0, .6) !important 842 | } 843 | 844 | .note-3kmerW textarea { 845 | border: 1px solid transparent 846 | } 847 | 848 | .note-3kmerW textarea:focus { 849 | background-color: rgba(0, 0, 0, .35); 850 | border-color: rgba(0, 0, 0, .4) 851 | } 852 | 853 | .bodyTitle-Y0qMQz { 854 | text-align: center; 855 | position: relative; 856 | color: #e6e6e6; 857 | text-shadow: 0 2px 5px var(--backgroundColor); 858 | z-index: 2 859 | } 860 | 861 | .bodyTitle-Y0qMQz::before { 862 | content: ""; 863 | width: 100%; 864 | height: 2px; 865 | position: absolute; 866 | left: 0; 867 | top: calc(50% - 1px); 868 | background-image: linear-gradient(to right, transparent, var(--themeColor1), var(--themeColor2), transparent); 869 | z-index: -1 870 | } 871 | 872 | .rolesList-22qj2L .role_dfa8b6 { 873 | border-radius: 6px 874 | } 875 | 876 | 877 | .autocompleteArrow-2CRgr2, 878 | .header-PfVfAO { 879 | background-color: var(--backgroundColor) !important; 880 | box-shadow: inset 0 0 0 1000000px rgba(0, 0, 0, .55) 881 | } 882 | 883 | .container-1YVRxo .sectionTag-euh3ZW { 884 | background-color: var(--backgroundColor) !important 885 | } 886 | 887 | .row-3UUG_l.selected-3LIQAc { 888 | background-image: linear-gradient(90deg, var(--themeColor2) -90%, var(--backgroundColor)) !important 889 | } 890 | 891 | .row-3UUG_l.selected-3LIQAc span, 892 | .row-3UUG_l:hover span { 893 | text-shadow: 0 0 5px #000 894 | } 895 | 896 | .headerTop-2y3V6H, 897 | .headerNormal-1l1Znk { 898 | background-color: transparent !important; 899 | border: none; 900 | } 901 | 902 | .activity-11LB_k, 903 | .headerFill-adLl4x { 904 | box-shadow: 0 0 10px -3px rgba(0, 0, 0, .75); 905 | position: relative; 906 | z-index: 1; 907 | overflow: hidden 908 | } 909 | 910 | .activity-11LB_k::before, 911 | .headerFill-adLl4x::before { 912 | content: ""; 913 | position: absolute; 914 | left: 0; 915 | top: -10%; 916 | width: 100%; 917 | height: 120%; 918 | transform: rotate(-5deg); 919 | z-index: -1; 920 | background-image: url(https://i.imgur.com/ZIiYTwn.png); 921 | background-repeat: repeat; 922 | background-position: center; 923 | background-size: cover; 924 | mix-blend-mode: darken 925 | } 926 | 927 | .activityProfile_c1d9fd .content__2ef49, 928 | .activityProfile_c1d9fd .details__2ef49, 929 | .activityProfile_c1d9fd .headerText__2ef49, 930 | .activityProfile_c1d9fd .name__2ef49, 931 | .activityUserPopout_c1d9fd .content__2ef49, 932 | .activityUserPopout_c1d9fd .details__2ef49, 933 | .activityUserPopout_c1d9fd .headerText__2ef49, 934 | .activityUserPopout_c1d9fd .name__2ef49 { 935 | text-shadow: 0 2px 0 rgba(0, 0, 0, .7); 936 | color: #fff !important 937 | } 938 | 939 | .assets__2ef49 img, 940 | .gameIcon__2ef49 { 941 | box-shadow: 0 4px 4px -2px rgba(0, 0, 0, .7) 942 | } 943 | 944 | .styleFlexible-x0_sIC, 945 | .submenu-1apzyU { 946 | background-color: var(--backgroundColor) 947 | } 948 | 949 | .colorDefault-CDqZdO.focused-3qFvc8 { 950 | background-color: var(--themeColor2) 951 | } 952 | 953 | .bd-search-wrapper, 954 | .container_fea832, 955 | .container__33507, 956 | .searchBar-zdmu7v, 957 | .searchBar__35e86 .searchBarComponent__35e86 { 958 | background-color: rgba(0, 0, 0, .4) 959 | } 960 | 961 | .content-1DpZYB, 962 | .tooltipBrand-20XsMA { 963 | background: var(--themeColor1) !important 964 | } 965 | 966 | .noticeBrand-3nQBC_, 967 | .noticeInfo-3_iTE1 { 968 | background-color: transparent !important 969 | } 970 | 971 | .notice-2FJMB4 { 972 | box-shadow: none !important 973 | } 974 | 975 | .tooltipBrand-20XsMA .tooltipPointer-3L49xb { 976 | border-top-color: var(--themeColor1) !important 977 | } 978 | 979 | .unread__3b95d { 980 | background-color: var(--themeColor2) 981 | } 982 | 983 | .bd-addon-list .bd-card-footer button, 984 | .bd-button, 985 | .bd-modal-wrapper .footer button, 986 | .bd-updatebtn, 987 | .button__201d5, 988 | .lookFilled-yCfaCM, 989 | .lookInverted-2mDUMi { 990 | border-radius: 12px; 991 | transition: all .2s ease 992 | } 993 | 994 | .bd-addon-list .bd-card-footer button:hover, 995 | .bd-button:hover, 996 | .bd-modal-wrapper .footer button:hover, 997 | .bd-updatebtn:hover, 998 | .button__201d5:hover, 999 | .lookFilled-yCfaCM:hover, 1000 | .lookInverted-2mDUMi:hover { 1001 | border-radius: 8px 1002 | } 1003 | 1004 | .button__67645.enabled__67645:hover { 1005 | background-color: rgba(0, 0, 0, .5) 1006 | } 1007 | 1008 | .bd-addon-list .bd-card-footer button, 1009 | .bd-button, 1010 | .bd-modal-wrapper .footer button, 1011 | .bd-pfbtn, 1012 | .lookFilled-yCfaCM.colorBrand-I6CyqQ, 1013 | .lookFilled-yCfaCM.colorGrey-2iAG-B, 1014 | .lookGhost-2Fn_0-.colorBrand-I6CyqQ, 1015 | .lookGhost-2Fn_0-.colorGrey-2iAG-B, 1016 | .lookOutlined-3yKVGo.colorBrand-I6CyqQ { 1017 | background-color: var(--themeColor1); 1018 | background-image: linear-gradient(to bottom right, var(--themeColor1), var(--themeColor2)); 1019 | border: none; 1020 | color: #fff 1021 | } 1022 | 1023 | .bd-addon-list .bd-card-footer button:hover, 1024 | .bd-button:hover, 1025 | .bd-modal-wrapper .footer button:hover, 1026 | .bd-pfbtn:hover, 1027 | .lookFilled-yCfaCM.colorBrand-I6CyqQ:hover, 1028 | .lookFilled-yCfaCM.colorGrey-2iAG-B:hover, 1029 | .lookGhost-2Fn_0-.colorBrand-I6CyqQ:hover, 1030 | .lookGhost-2Fn_0-.colorGrey-2iAG-B:hover, 1031 | .lookOutlined-3yKVGo.colorBrand-I6CyqQ:hover { 1032 | background-color: var(--themeColor1) !important; 1033 | box-shadow: inset 0 0 0 1000000px rgba(255, 255, 255, .15) !important 1034 | } 1035 | 1036 | .lookInverted-2mDUMi .contents-3ca1mk { 1037 | background: -webkit-linear-gradient(var(--themeColor1), var(--themeColor2)); 1038 | -webkit-background-clip: text; 1039 | -webkit-text-fill-color: transparent 1040 | } 1041 | 1042 | .lookFilled-yCfaCM.colorPrimary-2AuQVo { 1043 | background-color: var(--backgroundColor) !important; 1044 | color: #fff 1045 | } 1046 | 1047 | .lookFilled-yCfaCM.colorPrimary-2AuQVo:active, 1048 | .lookFilled-yCfaCM.colorPrimary-2AuQVo:hover { 1049 | background-color: var(--backgroundColor) !important; 1050 | box-shadow: inset 0 0 0 1000000px rgba(255, 255, 255, .05); 1051 | color: #fff 1052 | } 1053 | 1054 | .lookOutlined-3yKVGo.colorGreen-3y-Z79 { 1055 | color: #3c3; 1056 | border-color: #3c3 1057 | } 1058 | 1059 | .lookFilled-yCfaCM.colorGreen-3y-Z79 { 1060 | background-color: #3c3; 1061 | background-image: linear-gradient(to bottom right, #3c3, #0c0) 1062 | } 1063 | 1064 | .content-1DpZYB .button-2sk-Wq, 1065 | .content-1DpZYB .button-2sk-Wq:hover { 1066 | color: #fff; 1067 | text-shadow: 0 1px 5px rgba(0, 0, 0, .8); 1068 | background-color: var(--themeColor2); 1069 | box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .4) 1070 | } 1071 | 1072 | .button-1MICoQ { 1073 | background-color: var(--themeColor1); 1074 | background-image: linear-gradient(to bottom right, var(--themeColor1), var(--themeColor2)); 1075 | border: none 1076 | } 1077 | 1078 | .button-1MICoQ:hover { 1079 | color: #fff !important 1080 | } 1081 | 1082 | .lookOutlined-3yKVGo.colorRed-rQXKgM { 1083 | background-color: #e60000; 1084 | background-image: linear-gradient(to bottom right, #e60000, #f30); 1085 | border-color: transparent; 1086 | color: #fff 1087 | } 1088 | 1089 | .closeButton_c2b141 { 1090 | border-color: var(--backgroundColor) !important; 1091 | background: 0 0 !important 1092 | } 1093 | 1094 | .keybind_c2b141 { 1095 | color: var(--backgroundColor) !important 1096 | } 1097 | 1098 | .sidebarRegion__23e6b { 1099 | background-color: transparent; 1100 | } 1101 | 1102 | #bd-settings-sidebar .ui-tab-bar-item, 1103 | .side_b3f026 .item_b3f026 { 1104 | transition: all .2s ease 1105 | } 1106 | 1107 | #bd-settings-sidebar .ui-tab-bar-item:hover, 1108 | .side_b3f026 .item_b3f026:hover { 1109 | background-color: rgba(0, 0, 0, .65) !important; 1110 | position: relative; 1111 | padding-left: 40px 1112 | } 1113 | 1114 | .side_b3f026 .item_b3f026[style*="color: rgb(114, 137, 218)"] { 1115 | color: var(--interactive-normal) !important 1116 | } 1117 | 1118 | div[aria-label=GUILD_SETTINGS] #bd-settings-sidebar .ui-tab-bar-item:hover, 1119 | div[aria-label=GUILD_SETTINGS] .side_b3f026 .item_b3f026:hover { 1120 | padding-left: 15px 1121 | } 1122 | 1123 | #bd-settings-sidebar .ui-tab-bar-item.selected, 1124 | .side_b3f026 .item_b3f026[style*="background-color: rgb(114, 137, 218)"], 1125 | .side_b3f026 .themed-2-lozF.selected-g-kMVV.item_b3f026 { 1126 | background-color: rgba(0, 0, 0, .65) !important; 1127 | padding-left: 40px; 1128 | color: #fff !important 1129 | } 1130 | 1131 | .topPill-3DJJNV .themed-2-lozF.selected-g-kMVV.item_b3f026 { 1132 | background-color: rgba(0, 0, 0, .65) !important; 1133 | padding-left: 15px 1134 | } 1135 | 1136 | div[aria-label=GUILD_SETTINGS] #bd-settings-sidebar .ui-tab-bar-item.selected, 1137 | div[aria-label=GUILD_SETTINGS] .side_b3f026 .themed-2-lozF.selected-g-kMVV.item_b3f026, 1138 | div[aria-label=GUILD_SETTINGS] .topPill-3DJJNV .themed-2-lozF.selected-g-kMVV.item_b3f026 { 1139 | padding-left: 25px 1140 | } 1141 | 1142 | #bd-settings-sidebar .ui-tab-bar-item.selected::after, 1143 | .side_b3f026 .item_b3f026[style*="background-color: rgb(114, 137, 218)"]::after, 1144 | .side_b3f026 .themed-2-lozF.selected-g-kMVV.item_b3f026::after, 1145 | .topPill-3DJJNV .themed-2-lozF.selected-g-kMVV.item_b3f026::after { 1146 | content: ""; 1147 | position: absolute; 1148 | left: 0; 1149 | top: 0; 1150 | height: 100%; 1151 | width: 5px; 1152 | border-radius: 4px 0 0 4px; 1153 | background: linear-gradient(to bottom right, var(--themeColor1), var(--themeColor2)); 1154 | z-index: 1 1155 | } 1156 | 1157 | #bd-settings-sidebar .ui-tab-bar-header, 1158 | .side_b3f026 .header-2Kx1US { 1159 | position: relative; 1160 | z-index: 2; 1161 | padding: 19px 8px 2px 16px; 1162 | margin-bottom: 5px; 1163 | text-align: center; 1164 | letter-spacing: 1px; 1165 | color: #e6e6e6 !important; 1166 | border-bottom-width: 2px; 1167 | border-style: solid; 1168 | border-image: linear-gradient(to right, transparent, var(--themeColor1), var(--themeColor2), transparent) 1 1169 | } 1170 | 1171 | #bd-settings-sidebar .ui-tab-bar-header::after, 1172 | #bd-settings-sidebar .ui-tab-bar-header::before, 1173 | .side_b3f026 .header-2Kx1US::after, 1174 | .side_b3f026 .header-2Kx1US::before { 1175 | content: ""; 1176 | position: absolute; 1177 | width: 50%; 1178 | height: 100%; 1179 | top: 0; 1180 | background-color: transparent; 1181 | z-index: -1 1182 | } 1183 | 1184 | #bd-settings-sidebar .ui-tab-bar-header { 1185 | display: block 1186 | } 1187 | 1188 | #bd-settings-sidebar .ui-tab-bar-header .bd-changelog-button { 1189 | position: absolute; 1190 | bottom: 2px; 1191 | right: 0 1192 | } 1193 | 1194 | .side_b3f026 .header-2Kx1US:first-child { 1195 | padding-top: 19px 1196 | } 1197 | 1198 | .sidebar__23e6b { 1199 | padding-top: 41px 1200 | } 1201 | 1202 | #bd-settings-sidebar .ui-tab-bar-header::before, 1203 | .side_b3f026 .header-2Kx1US::before { 1204 | left: 0; 1205 | box-shadow: 80px 50px 30px 0 var(--themeColor2) 1206 | } 1207 | 1208 | #bd-settings-sidebar .ui-tab-bar-header::after, 1209 | .side_b3f026 .header-2Kx1US::after { 1210 | right: 0; 1211 | box-shadow: -80px 50px 30px 0 var(--themeColor1) 1212 | } 1213 | 1214 | .detailsBlock-FoDTGA, 1215 | .table-17_dGF, 1216 | .cardWrapper-CyvwQv, 1217 | .feature-2IUcBI, 1218 | .accountList-305sx3, 1219 | .bottomDivider__01014, 1220 | .card_b846e5:before, 1221 | .cardPrimary-3qRT__, 1222 | .cardPrimaryEditable-2mz_3i, 1223 | .cardPrimaryOutline-1ofwVz, 1224 | .codeRedemptionRedirect-3SBiCp, 1225 | .connection-107AGH, 1226 | .container-30qY7E, 1227 | .css-13kbzi0-control, 1228 | .css-15ejc46-control, 1229 | .css-181m2lf-menu, 1230 | .css-1yegjoj-control, 1231 | .css-2yldzf-control, 1232 | .item-2idW98, 1233 | .css-2yldzf-control:hover, 1234 | .paginator__01014, 1235 | .paymentPane__01014 { 1236 | background-color: rgba(0, 0, 0, .35) !important; 1237 | border: none 1238 | } 1239 | 1240 | .bd-addon-list .bd-addon-header, 1241 | .bd-addon-list .bd-addon-card { 1242 | background-color: rgba(0, 0, 0, .5) !important; 1243 | } 1244 | 1245 | .phoneField_a0c54f .inputField_a0c54f { 1246 | background: 0 0 1247 | } 1248 | 1249 | .connectionHeader-2rV1ze, 1250 | .expandedInfo_e9cb00, 1251 | .fieldList__1fed1, 1252 | .integration-1f5IUi, 1253 | .pageButtonNext__2d021, 1254 | .pageButtonPrev__2d021, 1255 | .pageIndicator__2d021, 1256 | .phoneField_a0c54f { 1257 | background-color: rgba(0, 0, 0, .5) !important; 1258 | border-color: rgba(0, 0, 0, .5) !important 1259 | } 1260 | 1261 | .videoWrapper__56ac8 { 1262 | width: 660px; 1263 | left: 50%; 1264 | position: relative; 1265 | margin-left: -330px 1266 | } 1267 | 1268 | .gradientContainer_bfe55a { 1269 | background: 0 0 !important 1270 | } 1271 | 1272 | .wrapper_e03935 { 1273 | border-color: var(--themeColor1) 1274 | } 1275 | 1276 | .selected_e03935.option_e03935 { 1277 | border-color: var(--themeColor1); 1278 | background-color: var(--themeColor1) 1279 | } 1280 | 1281 | .option_e03935:hover { 1282 | background-color: var(--themeColor2) 1283 | } 1284 | 1285 | .option_e03935 { 1286 | background-color: var(--backgroundColor) 1287 | } 1288 | 1289 | .disabled_e03935 { 1290 | color: var(--backgroundColor) 1291 | } 1292 | 1293 | .h5-2RwDNl { 1294 | color: #fff; 1295 | text-shadow: 0 0 5px rgba(0, 0, 0, .8) 1296 | } 1297 | 1298 | .bd-switch-body, 1299 | .container-2nx-BQ { 1300 | background-color: rgba(0, 0, 0, .35) !important 1301 | } 1302 | 1303 | .container-2nx-BQ[style*="rgb(59, 165, 92)"] { 1304 | background-image: linear-gradient(to top right, var(--themeColor1), var(--themeColor2)) !important 1305 | } 1306 | 1307 | .colorDefault-CDqZdO .checkbox-hADx5o, 1308 | .colorDefault-CDqZdO .radioSelection-1UHp0b, 1309 | .colorDefault-CDqZdO.focused-3qFvc8 .check-3HZJs4 { 1310 | color: var(--themeColor1) 1311 | } 1312 | 1313 | .checkboxWrapper-2fDzaA .checkbox-f1HnKB.checked-1pZh2h { 1314 | background-color: var(--themeColor1) !important; 1315 | background-image: linear-gradient(to bottom right, var(--themeColor1), var(--themeColor2)); 1316 | border: 1px solid rgba(0, 0, 0, .5) !important 1317 | } 1318 | 1319 | .item-2idW98[style*="rgb(114, 137, 218)"] { 1320 | background-color: var(--themeColor1) !important; 1321 | background-image: linear-gradient(to bottom right, var(--themeColor1), var(--themeColor2)); 1322 | border: 1px solid rgba(0, 0, 0, .5) !important 1323 | } 1324 | 1325 | .item-2idW98[style*="rgb(114, 137, 218)"] .checkboxWrapper-2fDzaA .checkbox-f1HnKB.checked-1pZh2h { 1326 | border-color: rgba(0, 0, 0, .5) !important; 1327 | background-color: var(--backgroundColor) !important; 1328 | background-image: none !important 1329 | } 1330 | 1331 | .item-2idW98[style*="rgb(114, 137, 218)"] .checkboxWrapper-2fDzaA .checkbox-f1HnKB.checked-1pZh2h svg g polyline { 1332 | stroke: var(--themeColor1) !important 1333 | } 1334 | 1335 | .cardPrimaryEditable-2mz_3i[style*="rgb(67, 181, 129)"] { 1336 | background-color: #43b581 !important; 1337 | background-image: linear-gradient(to top right, #44b566, #43b581) !important; 1338 | border-color: rgba(0, 0, 0, .95) !important 1339 | } 1340 | 1341 | .checkboxWrapper-2fDzaA .checkbox-f1HnKB[style*="rgb(67, 181, 129)"] { 1342 | background-image: none !important; 1343 | background-color: #fff !important; 1344 | border-color: rgba(0, 0, 0, .15) !important 1345 | } 1346 | 1347 | .cardPrimaryEditable-2mz_3i[style*="rgb(250, 166, 26)"] { 1348 | background-color: #faa61a !important; 1349 | background-image: linear-gradient(to top right, #fb8a1a, #faa61a) !important; 1350 | border-color: rgba(0, 0, 0, .95) !important 1351 | } 1352 | 1353 | .checkboxWrapper-2fDzaA .checkbox-f1HnKB[style*="rgb(250, 166, 26)"] { 1354 | background-image: none !important; 1355 | background-color: #fff !important; 1356 | border-color: rgba(0, 0, 0, .15) !important 1357 | } 1358 | 1359 | .cardPrimaryEditable-2mz_3i[style*="rgb(245, 119, 49)"] { 1360 | background-color: #f04747 !important; 1361 | background-image: linear-gradient(to top right, #f54430, #f57731) !important; 1362 | border-color: rgba(0, 0, 0, .95) !important 1363 | } 1364 | 1365 | .checkboxWrapper-2fDzaA .checkbox-f1HnKB[style*="rgb(245, 119, 49)"] { 1366 | background-image: none !important; 1367 | background-color: #fff !important; 1368 | border-color: rgba(0, 0, 0, .15) !important 1369 | } 1370 | 1371 | .cardPrimaryEditable-2mz_3i[style*="rgb(240, 71, 71)"] { 1372 | background-color: #f04747 !important; 1373 | background-image: linear-gradient(to top right, #f06c46, #f04747) !important; 1374 | border-color: rgba(0, 0, 0, .95) !important 1375 | } 1376 | 1377 | .checkboxWrapper-2fDzaA .checkbox-f1HnKB[style*="rgb(240, 71, 71)"] { 1378 | background-image: none !important; 1379 | background-color: #fff !important; 1380 | border-color: rgba(0, 0, 0, .15) !important 1381 | } 1382 | 1383 | .bar-1Bhnl9 { 1384 | background-color: var(--backgroundColor) !important 1385 | } 1386 | 1387 | .barFill-2Bh7CX { 1388 | background-color: var(--themeColor1); 1389 | background-image: linear-gradient(to right, var(--themeColor1), var(--themeColor2)) 1390 | } 1391 | 1392 | .accountBtn-1YkMgV .accountBtnInner-3XK70s { 1393 | background-color: rgba(0, 0, 0, .5) !important 1394 | } 1395 | 1396 | .defaultIndicator__43963 { 1397 | background-color: var(--backgroundColor) !important; 1398 | padding: 5px 10px 1399 | } 1400 | 1401 | .premiumIndicator__43963 { 1402 | background-color: var(--backgroundColor) !important; 1403 | background-image: linear-gradient(to right, var(--themeColor1), var(--themeColor2)); 1404 | padding: 5px 10px 1405 | } 1406 | 1407 | .cardWrapper-CyvwQv { 1408 | background-color: var(--backgroundColor) 1409 | } 1410 | 1411 | .card-2gdrYL:hover { 1412 | background-color: rgba(0, 0, 0, .5) 1413 | } 1414 | 1415 | .progress_e5cdf3 { 1416 | background-color: var(--backgroundColor) !important; 1417 | border-radius: 50px 1418 | } 1419 | 1420 | .notches_e5cdf3.gray_e5cdf3 { 1421 | display: none 1422 | } 1423 | 1424 | .theme-dark .userSettingsVoice-1_dzjw .previewOverlay-2reuWf { 1425 | background-color: var(--backgroundColor); 1426 | border-color: rgba(0, 0, 0, .5) 1427 | } 1428 | 1429 | .addGamePopout-3yePJc, 1430 | .css-n57xjs-menu, 1431 | .notDetected-2HEmAp { 1432 | background-color: var(--backgroundColor) !important; 1433 | border: none 1434 | } 1435 | 1436 | .button_e18686 { 1437 | background-color: var(--backgroundColor) !important; 1438 | box-shadow: 0 0 0 1px var(--themeColor1), 0 1px 5px 0 var(--themeColor2) !important 1439 | } 1440 | 1441 | .lastPlayed-3aHvxk, 1442 | .overlayStatusText-AHDYB3 { 1443 | color: #e6e6e6 !important 1444 | } 1445 | 1446 | .css-1a8reka-control { 1447 | border-color: rgba(255, 255, 255, .05) 1448 | } 1449 | 1450 | .game-3x3aDt { 1451 | box-shadow: 0 1px 0 0 rgba(0, 0, 0, .15) !important 1452 | } 1453 | 1454 | .divider-_0um2u { 1455 | border-top: thin solid rgba(0, 0, 0, .15) !important 1456 | } 1457 | 1458 | .notificationsSound-27jFSh { 1459 | box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, .15) !important 1460 | } 1461 | 1462 | .item-3eFBNF, 1463 | .row-1Tg75B { 1464 | box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15) !important 1465 | } 1466 | 1467 | #bd-settingspane-container .ui-switch-item .style-description { 1468 | border-bottom: 1px solid rgba(0, 0, 0, .15) 1469 | } 1470 | 1471 | #bd-settings-sidebar .ui-tab-bar-separator, 1472 | .separator-2wx7h6 { 1473 | background-color: rgba(0, 0, 0, .35) !important 1474 | } 1475 | 1476 | .item-3eFBNF { 1477 | transition: all .2s ease 1478 | } 1479 | 1480 | .item-3eFBNF.selected-2DeaDa { 1481 | background-color: var(--backgroundColor); 1482 | border-radius: 50px 1483 | } 1484 | 1485 | .item-3eFBNF:focus, 1486 | .item-3eFBNF:focus-within, 1487 | .item-3eFBNF:hover { 1488 | background-color: var(--backgroundColor); 1489 | box-shadow: inset 0 0 0 1000000px rgba(255, 255, 255, .02) !important; 1490 | border-radius: 50px 1491 | } 1492 | 1493 | .detailsBlock-FoDTGA, 1494 | .table-17_dGF { 1495 | background-color: var(--backgroundColor) 1496 | } 1497 | 1498 | .popout-2sKjHu { 1499 | background-color: var(--backgroundColor) !important; 1500 | border-color: var(--themeColor1) !important 1501 | } 1502 | 1503 | .lookFilled-1h1y05.select-1Pkeg4:hover.selectOpen-hQuR6b, 1504 | .lookFilled-1h1y05.selectOpen-hQuR6b, 1505 | .select-1Pkeg4:focus { 1506 | border-color: var(--themeColor1) !important 1507 | } 1508 | 1509 | .guildHeader-3nh5RK, 1510 | .subscribeTooltipWrapper-32-Ce8 { 1511 | background-color: var(--backgroundColor) 1512 | } 1513 | 1514 | .guildSubscriptionSlots-JPXXvN { 1515 | background-color: var(--backgroundColor) 1516 | } 1517 | 1518 | .bd-switch input:checked+.bd-switch-body, 1519 | .themeDefault-24hCdX.valueChecked-m-4IJZ { 1520 | background-color: var(--themeColor1); 1521 | background-image: linear-gradient(to bottom right, var(--themeColor1), var(--themeColor2)); 1522 | } 1523 | 1524 | .bd-switch { 1525 | border-radius: 50px !important; 1526 | } 1527 | 1528 | .bd-addon-list .bd-addon-card { 1529 | padding: 0 1530 | } 1531 | 1532 | .bd-addon-list .bda-header { 1533 | border: none; 1534 | padding: 5px 20px; 1535 | background-color: rgba(0, 0, 0, .54) 1536 | } 1537 | 1538 | .bda-name { 1539 | text-transform: uppercase; 1540 | background: -webkit-linear-gradient(80deg, var(--themeColor1), var(--themeColor2)); 1541 | -webkit-background-clip: text; 1542 | -webkit-text-fill-color: transparent 1543 | } 1544 | 1545 | #bd-settingspane-container .scroller-wrap { 1546 | padding: 5px 20px 1547 | } 1548 | 1549 | .bd-addon-list .bd-card-footer { 1550 | border: none; 1551 | padding: 10px 20px 15px 20px 1552 | } 1553 | 1554 | .bd-addon-list .bd-addon-card a { 1555 | color: var(--themeColor2) 1556 | } 1557 | 1558 | .plugin-settings { 1559 | padding: 15px 20px 1560 | } 1561 | 1562 | .noiseCancellationPopout_e131a9 { 1563 | background-color: var(--backgroundColor) 1564 | } 1565 | 1566 | .notches_e5cdf3.black_e5cdf3 { 1567 | background-image: none !important 1568 | } 1569 | 1570 | .copyInput_fffc15, 1571 | .copyInputDefault_e19ebf, 1572 | .input-2g-os5 { 1573 | background-color: var(--backgroundColor) !important 1574 | } 1575 | 1576 | .input-2g-os5.focused-1AtTHC, 1577 | .input-2g-os5:focus { 1578 | border-color: var(--themeColor1) 1579 | } 1580 | 1581 | .headerClickable-2IVFo9, 1582 | .headerDefault-1wrJcN, 1583 | .wrapper-1cBijl { 1584 | background-color: var(--backgroundColor) !important; 1585 | border: 1px solid rgba(0, 0, 0, .5) 1586 | } 1587 | 1588 | .changeDetails-bk98pu, 1589 | .headerExpanded-CUEwZ5 { 1590 | background-color: var(--backgroundColor) !important; 1591 | border: 1px solid rgba(0, 0, 0, .5) 1592 | } 1593 | 1594 | .divider-1pnAR2 { 1595 | background-color: var(--backgroundColor) !important 1596 | } 1597 | 1598 | .regionSelectModal-12e-57 .regionSelectModalOption-2DSIZ3 { 1599 | background-color: rgba(0, 0, 0, .5); 1600 | border: 2px solid rgba(0, 0, 0, .5) 1601 | } 1602 | 1603 | .footer_c33701, 1604 | .modal__7f8f5 { 1605 | background-color: var(--backgroundColor) !important; 1606 | box-shadow: none !important 1607 | } 1608 | 1609 | .attachPopout__5c634, 1610 | .footer_dbca3c, 1611 | .uploadModal_dbca3c { 1612 | background-color: var(--backgroundColor) !important; 1613 | box-shadow: none !important 1614 | } 1615 | 1616 | .uploadModal_dbca3c .scrollableContainer__74017 { 1617 | background-color: rgba(0, 0, 0, .5); 1618 | border: 1px solid rgba(0, 0, 0, .5) 1619 | } 1620 | 1621 | .uploadModalIn_dbca3c .uploadDropModal_dbca3c .bgScale_dbca3c { 1622 | background: var(--backgroundColor) !important 1623 | } 1624 | 1625 | .uploadModalIn_dbca3c .uploadDropModal_dbca3c .inner_dbca3c { 1626 | border-color: var(--themeColor1) !important 1627 | } 1628 | 1629 | .attachPopoutRow__7bbf5:hover { 1630 | background-color: var(--backgroundColor) !important; 1631 | box-shadow: inset 0 0 0 1000000px rgba(0, 0, 0, .5) 1632 | } 1633 | 1634 | .itemBase-tz5SeC.brand-3igrJY { 1635 | color: var(--interactive-normal) !important 1636 | } 1637 | 1638 | .itemBase-tz5SeC.brand-3igrJY:hover { 1639 | color: #fff !important 1640 | } 1641 | 1642 | .container__2692d, 1643 | .footer__45690, 1644 | .footer-31IekZ, 1645 | .message__89466, 1646 | .messagesPopoutWrap__45690 { 1647 | background-color: var(--backgroundColor) !important; 1648 | border: none !important 1649 | } 1650 | 1651 | .header__45690, 1652 | .messageGroupWrapper__45690, 1653 | .secondary__45d4f:hover { 1654 | background-color: rgba(0, 0, 0, .5) !important 1655 | } 1656 | 1657 | .messageGroupWrapper__45690 { 1658 | border-color: var(--backgroundColor) 1659 | } 1660 | 1661 | .jumpButton__45690 { 1662 | background-color: var(--themeColor1); 1663 | background-image: linear-gradient(to bottom right, var(--themeColor1), var(--themeColor2)) 1664 | } 1665 | 1666 | .messageContainer__95796 { 1667 | background-color: var(--backgroundColor) 1668 | } 1669 | 1670 | .channelHeader__35a7e { 1671 | background-color: rgba(0, 0, 0, .5); 1672 | border-radius: 8px; 1673 | padding: 12px 16px 1674 | } 1675 | 1676 | .secondary__45d4f, 1677 | .tertiary_ad6d80 { 1678 | background-color: var(--backgroundColor) 1679 | } 1680 | 1681 | .contentWrapper__08434, 1682 | .inspector-sdLnLS, 1683 | .wrapper__14245, 1684 | .wrapper_dc0b29 { 1685 | background-color: var(--backgroundColor) 1686 | } 1687 | 1688 | .categoryItemDefaultCategorySelected_b9ee0c, 1689 | .categoryItemDefaultCategorySelected_b9ee0c:hover, 1690 | .emojiItem_fc7141.emojiItemSelected_fc7141, 1691 | .navButtonActive__08434 { 1692 | background-color: var(--themeColor1); 1693 | background-image: linear-gradient(to bottom right, var(--themeColor1), var(--themeColor2)) 1694 | } 1695 | 1696 | .categoryItemDefaultCategory_b9ee0c:hover { 1697 | background-color: rgba(0, 0, 0, .5) 1698 | } 1699 | 1700 | .bd-modal-wrapper .bd-modal-body, 1701 | .bd-modal-wrapper .bd-modal-inner { 1702 | background-color: var(--backgroundColor); 1703 | border: none 1704 | } 1705 | 1706 | .bd-modal-wrapper .header { 1707 | background-color: rgba(0, 0, 0, .5) 1708 | } 1709 | 1710 | .wrapper_d4fa29 { 1711 | color: var(--themeColor1); 1712 | box-shadow: inset 0 0 0 1000000px rgba(0, 0, 0, .65); 1713 | border-radius: 8px !important 1714 | } 1715 | 1716 | .wrapper_d4fa29:hover { 1717 | color: var(--themeColor2) !important 1718 | } 1719 | 1720 | .backgroundFlash__5126c .wrapper_d4fa29 { 1721 | box-shadow: none 1722 | } 1723 | 1724 | .autocomplete__13533 { 1725 | background-color: var(--backgroundColor) !important 1726 | } 1727 | 1728 | .selectorSelected-1_M1WV { 1729 | background-color: var(--backgroundColor) !important; 1730 | box-shadow: inset 0 0 0 1000000px rgba(0, 0, 0, .35) 1731 | } 1732 | 1733 | .description-11DmNu, 1734 | .descriptionUsername-J_75O8 { 1735 | color: #e6e6e6 !important 1736 | } 1737 | 1738 | .mentioned__5126c { 1739 | background-color: transparent 1740 | } 1741 | 1742 | .message__5126c.mentioned__5126c.selected__5126c, 1743 | .mouse-mode.full-motion .mentioned__5126c:hover { 1744 | background-color: transparent 1745 | } 1746 | 1747 | .mentioned__5126c::after { 1748 | content: ""; 1749 | position: absolute; 1750 | left: 0; 1751 | top: 0; 1752 | width: 100%; 1753 | height: 100%; 1754 | background-color: var(--themeColor1); 1755 | background-image: linear-gradient(to bottom right, var(--themeColor1), var(--themeColor2)); 1756 | z-index: -1; 1757 | opacity: .15 1758 | } 1759 | 1760 | .mentioned__5126c:before { 1761 | background-color: var(--themeColor1); 1762 | background-image: linear-gradient(to right, var(--themeColor1), var(--themeColor2)) 1763 | } 1764 | 1765 | .botTagInvert__82f07, 1766 | .botTagRegular_c89c9a { 1767 | background-color: var(--themeColor1); 1768 | border-radius: 50px !important; 1769 | color: #fff 1770 | } 1771 | 1772 | .tabBar__133bf .item__133bf[style*="rgb(67, 181, 129)"] { 1773 | background-color: var(--themeColor1); 1774 | background-image: linear-gradient(to right, var(--themeColor1), var(--themeColor2)); 1775 | color: #fff !important 1776 | } 1777 | 1778 | .peopleListItem_cc6179 { 1779 | border-top: 1px solid rgba(0, 0, 0, .15) 1780 | } 1781 | 1782 | .peopleListItem_cc6179.active_cc6179, 1783 | .peopleListItem_cc6179:hover { 1784 | background: var(--backgroundColor) 1785 | } 1786 | 1787 | .actionButton_f8fa06 { 1788 | background-color: var(--backgroundColor) 1789 | } 1790 | 1791 | .peopleListItem_cc6179.active_cc6179 .actionButton_f8fa06.highlight_f8fa06, 1792 | .peopleListItem_cc6179:hover .actionButton_f8fa06.highlight_f8fa06 { 1793 | background-color: var(--backgroundColor); 1794 | box-shadow: inset 0 0 0 1000000px rgba(255, 255, 255, .05) 1795 | } 1796 | 1797 | .popout_c6d10c, 1798 | .wrapper__00943 { 1799 | background-color: var(--backgroundColor) !important 1800 | } 1801 | 1802 | .akaBadge__27cd4, 1803 | .enabled-1t_Gxm:hover, 1804 | .memberListItem-31QoHj:not(.popoutDisabled-2RK7MF):hover, 1805 | .side_b3f026 .themed-2-lozF.item_b3f026:hover, 1806 | .topPill-3DJJNV .themed-2-lozF.item_b3f026:hover, 1807 | .wrapper__00943:hover { 1808 | background-color: var(--backgroundColor) !important; 1809 | box-shadow: inset 0 0 0 1000000px rgba(0, 0, 0, .65) 1810 | } 1811 | 1812 | .separator__00943 { 1813 | background-color: rgba(0, 0, 0, .5) !important 1814 | } 1815 | 1816 | .inset_bf1984 { 1817 | background-color: rgba(0, 0, 0, .5) !important 1818 | } 1819 | 1820 | .defaultIndicator_a6f654, 1821 | .rowWrapperActive_adb41f { 1822 | background-color: var(--backgroundColor) !important 1823 | } 1824 | 1825 | .installSize-3az1nt { 1826 | background-color: rgba(0, 0, 0, .25) !important 1827 | } 1828 | 1829 | .installationPath_a6f654 { 1830 | box-shadow: 0 1px 0 0 rgba(0, 0, 0, .15) !important 1831 | } 1832 | 1833 | .rowBody_a6f654 { 1834 | color: #e6e6e6 !important 1835 | } 1836 | 1837 | .background__27106 { 1838 | stroke: var(--backgroundColor) !important 1839 | } 1840 | 1841 | .foreground__27106 { 1842 | stroke: var(--themeColor1) !important 1843 | } 1844 | 1845 | .quickswitcher_ac6cb0 { 1846 | background-color: var(--backgroundColor); 1847 | border: 1px solid rgba(0, 0, 0, .5); 1848 | box-shadow: none 1849 | } 1850 | 1851 | .input_ac6cb0 { 1852 | background-color: var(--backgroundColor) !important; 1853 | box-shadow: inset 0 0 0 1000000px rgba(0, 0, 0, .35); 1854 | border: 1px solid rgba(0, 0, 0, .5); 1855 | transition: border-color .2s ease 1856 | } 1857 | 1858 | .input_ac6cb0:focus { 1859 | border-color: var(--themeColor1) 1860 | } 1861 | 1862 | .scroller_ac6cb0 { 1863 | background-color: var(--backgroundColor) 1864 | } 1865 | 1866 | .resultFocused-3aIoYe { 1867 | background: var(--backgroundColor) !important; 1868 | box-shadow: inset 0 0 0 1000000px rgba(255, 255, 255, .05) 1869 | } 1870 | 1871 | .scrollerOuter-3FLELE { 1872 | margin-right: -6px 1873 | } 1874 | 1875 | .keyboardShortcutsModal_f061f6 { 1876 | background-color: var(--backgroundColor) !important 1877 | } 1878 | 1879 | .keybindShortcut-3zF1P9 span { 1880 | background-color: var(--themeColor1); 1881 | background-image: linear-gradient(to right, var(--themeColor1), var(--themeColor2)); 1882 | border: 1px solid rgba(0, 0, 0, .5) !important 1883 | } 1884 | 1885 | .ddrArrows_f061f6 .arrow_f061f6:nth-child(1) { 1886 | filter: hue-rotate(60deg) 1887 | } 1888 | 1889 | .ddrArrows_f061f6 .arrow_f061f6:nth-child(2) { 1890 | filter: hue-rotate(120deg) 1891 | } 1892 | 1893 | .ddrArrows_f061f6 .arrow_f061f6:nth-child(3) { 1894 | filter: hue-rotate(180deg) 1895 | } 1896 | 1897 | .ddrArrows_f061f6 .arrow_f061f6:nth-child(4) { 1898 | filter: hue-rotate(240deg) 1899 | } 1900 | 1901 | .container__55c99, 1902 | .focused__55c99 { 1903 | background-color: var(--backgroundColor) !important 1904 | } 1905 | 1906 | .option-2KkUJO:after { 1907 | display: none 1908 | } 1909 | 1910 | .option-2KkUJO.selected-rZcOL- { 1911 | background-color: var(--backgroundColor) !important; 1912 | box-shadow: inset 0 0 0 1000000px rgba(0, 0, 0, .5) 1913 | } 1914 | 1915 | .searchAnswer_bd8186, 1916 | .searchFilter_bd8186 { 1917 | background-color: var(--backgroundColor) !important; 1918 | border-radius: 6px 1919 | } 1920 | 1921 | .elevationBorderHigh__2b2f1 { 1922 | box-shadow: none !important 1923 | } 1924 | 1925 | .queryContainer__55c99 { 1926 | border-bottom-color: var(--backgroundColor) !important 1927 | } 1928 | 1929 | .dim-2Uxgxb span { 1930 | color: #fff !important 1931 | } 1932 | 1933 | .calendarPicker_d27f17 .react-datepicker, 1934 | .calendarPicker_d27f17 .react-datepicker__header { 1935 | background-color: var(--backgroundColor) !important 1936 | } 1937 | 1938 | .calendarPicker_d27f17 .react-datepicker__day--disabled, 1939 | .calendarPicker_d27f17 .react-datepicker__day--outside-month { 1940 | background-color: var(--backgroundColor) !important; 1941 | opacity: .75 1942 | } 1943 | 1944 | .calendarPicker_d27f17 .react-datepicker__day { 1945 | border-color: rgba(0, 0, 0, .5) !important 1946 | } 1947 | 1948 | .calendarPicker_d27f17 .react-datepicker__day.react-datepicker__day--selected:after, 1949 | .calendarPicker_d27f17 .react-datepicker__day.react-datepicker__day--selected:hover, 1950 | .calendarPicker_d27f17 .react-datepicker__day:hover, 1951 | .datePicker-70cO23 .datePickerHint-17MnA8 .hintValue-1x-flY { 1952 | background-color: var(--themeColor1); 1953 | background-image: linear-gradient(to right, var(--themeColor1), var(--themeColor2)) 1954 | } 1955 | 1956 | .searchResultsWrap_a9e706 { 1957 | background-color: transparent 1958 | } 1959 | 1960 | .searchHeader-1EzJGH { 1961 | box-shadow: none; 1962 | background-color: rgba(0, 0, 0, .15) 1963 | } 1964 | 1965 | .tab-EiCZG6.selected-3gXBLQ { 1966 | border-bottom-color: var(--themeColor1); 1967 | color: var(--themeColor1) 1968 | } 1969 | 1970 | .searchResultsWrap_a9e706 div[role=group] .channelSeparator-dTqJ4K:before { 1971 | content: none 1972 | } 1973 | 1974 | .searchResultsWrap_a9e706 div[role=group] .channelName-wvgELL { 1975 | background-color: rgba(0, 0, 0, .05); 1976 | padding: 8px 1977 | } 1978 | 1979 | .searchResult-2N9RV4::after, 1980 | .searchResult-2N9RV4::before { 1981 | content: none 1982 | } 1983 | 1984 | .searchResultMessage-30QnSN.hit-1CXhXT { 1985 | background-color: var(--backgroundColor); 1986 | box-shadow: inset 0 0 0 100000px rgba(255, 255, 255, .05); 1987 | border: none 1988 | } 1989 | 1990 | .jumpButton-1ol35X { 1991 | background-color: var(--themeColor2); 1992 | color: #fff 1993 | } 1994 | 1995 | .searchResult-2N9RV4.expanded-ovgtuV { 1996 | background-color: rgba(0, 0, 0, .5); 1997 | box-shadow: inset 0 0 0 100000px rgba(255, 255, 255, .05); 1998 | border: none 1999 | } 2000 | 2001 | .expanded-ovgtuV .searchResultMessage-30QnSN.hit-1CXhXT { 2002 | background-color: var(--backgroundColor); 2003 | box-shadow: inset 0 0 0 100000px rgba(255, 255, 255, .05); 2004 | border: none 2005 | } 2006 | 2007 | .categoryFadeBlurple-1HuV1x { 2008 | background-color: var(--themeColor1); 2009 | background: linear-gradient(to right, var(--themeColor1), var(--themeColor2)) !important 2010 | } 2011 | 2012 | .focused-q9B2e4:after, 2013 | .result-3OpoO7:hover:after { 2014 | box-shadow: inset 0 0 0 2px var(--themeColor1), inset 0 0 0 3px var(--backgroundColor) !important 2015 | } 2016 | 2017 | .perksModal-fSYqOq { 2018 | background: 0 0 !important 2019 | } 2020 | 2021 | .barBackground-unEPDT, 2022 | .ctaBar-2UsjF2, 2023 | .perk-2WeBWW { 2024 | background-color: var(--backgroundColor) !important 2025 | } 2026 | 2027 | .tierMarkerBackground-G8FoN4 { 2028 | background-color: var(--backgroundColor) !important 2029 | } 2030 | 2031 | .tierMarkerInProgress-2Tdxjz { 2032 | background-color: var(--backgroundColor) !important; 2033 | box-shadow: inset 0 0 0 1000000px rgba(255, 255, 255, .05) 2034 | } 2035 | 2036 | .tierMarkerLabelText-1wk8KK:not(.isAccomplished-2NcqRT):hover { 2037 | background-color: rgba(0, 0, 0, .65) 2038 | } 2039 | 2040 | .originalPrice-3YTVmi { 2041 | color: #000 2042 | } 2043 | 2044 | .tierHeaderLocked-1s2JJz { 2045 | background-color: var(--backgroundColor) !important; 2046 | box-shadow: inset 0 0 0 1000000px rgba(0, 0, 0, .5) 2047 | } 2048 | 2049 | .tierBody-16Chc9 { 2050 | background-color: var(--backgroundColor) !important 2051 | } 2052 | 2053 | .existingSlotNotice-1KvWSb, 2054 | .upsellFooter-6EgwMe { 2055 | background-color: var(--backgroundColor) !important; 2056 | box-shadow: inset 0 0 0 1000000px rgba(0, 0, 0, .5) 2057 | } 2058 | 2059 | .icon_bb7288.disabled_f8a046, 2060 | .icon_bb7288.disabled_f8a046:hover, 2061 | .iconWrapper__0d13e { 2062 | background-color: var(--backgroundColor) !important; 2063 | box-shadow: inset 0 0 0 1000000px rgba(0, 0, 0, .5) 2064 | } 2065 | 2066 | .icon_bb7288:hover, 2067 | .tierInProgress_c44edb { 2068 | background-color: var(--backgroundColor) !important; 2069 | box-shadow: inset 0 0 0 1000000px rgba(255, 255, 255, .05) 2070 | } 2071 | 2072 | .tierHeaderLocked-1a2opw { 2073 | background-color: var(--backgroundColor) !important; 2074 | box-shadow: inset 0 0 0 1000000px rgba(0, 0, 0, .4) 2075 | } 2076 | 2077 | .tierBody-x9kBBp { 2078 | background-color: var(--backgroundColor) !important 2079 | } 2080 | 2081 | .background_c44edb { 2082 | color: var(--backgroundColor) !important 2083 | } 2084 | 2085 | .ctaSection-3LqbxQ, 2086 | .formSection-23ecNl { 2087 | background-color: var(--backgroundColor) !important 2088 | } 2089 | 2090 | .channelsWrapper-51IUFR, 2091 | .rolesWrapper-1LLZrU, 2092 | .usagePill-P-Cmcv { 2093 | background-color: var(--backgroundColor) !important; 2094 | box-shadow: inset 0 0 0 1000000px rgba(0, 0, 0, .5) 2095 | } 2096 | 2097 | .iconContainer-GFfNaA svg circle { 2098 | fill: var(--themeColor1) 2099 | } 2100 | 2101 | .spoilerText-27bIiA { 2102 | padding: 2px 5px 2103 | } 2104 | 2105 | .spoilerText-27bIiA.hidden-3B-Rum { 2106 | background-color: var(--backgroundColor) !important 2107 | } 2108 | 2109 | .spoilerText-27bIiA { 2110 | background-color: var(--backgroundColor) !important; 2111 | box-shadow: inset 0 0 0 1000000px rgba(255, 255, 255, .05) 2112 | } 2113 | 2114 | .footer-1hTRRZ, 2115 | .scroller_ed5743 { 2116 | background-color: var(--backgroundColor) !important 2117 | } 2118 | 2119 | .inviteRow-3vmB7i:hover { 2120 | background-color: var(--backgroundColor) !important; 2121 | box-shadow: inset 0 0 0 1000000px rgba(255, 255, 255, .05) 2122 | } 2123 | 2124 | .blockquoteDivider__75297 { 2125 | background-color: var(--themeColor1) 2126 | } 2127 | 2128 | .blockquoteContainer__75297 blockquote { 2129 | background-color: rgba(0, 0, 0, .25); 2130 | border-radius: 4px 2131 | } 2132 | 2133 | .toolbar_bba883 { 2134 | background-color: var(--backgroundColor) !important 2135 | } 2136 | 2137 | .toolbar_bba883:before { 2138 | border-top-color: var(--backgroundColor) 2139 | } 2140 | 2141 | .active__05fbc, 2142 | .hover_d0ebf2:hover { 2143 | background-color: var(--themeColor1); 2144 | border-radius: 50% !important 2145 | } 2146 | 2147 | .attachButtonPlay__0923f { 2148 | color: #1db954 2149 | } 2150 | 2151 | .bf-toolbar::before { 2152 | background: var(--backgroundColor) !important 2153 | } 2154 | 2155 | .bf-toolbar .format:hover { 2156 | background: linear-gradient(to right, var(--themeColor1), var(--themeColor2)) !important; 2157 | color: #fff !important 2158 | } 2159 | 2160 | .wrapper_ef3116, 2161 | .scroller_ef3116 { 2162 | background: transparent !important 2163 | } 2164 | 2165 | .childWrapper__6e9f8 .homeIcon-FuNwkv { 2166 | display: none 2167 | } 2168 | 2169 | .container-2O1UgZ { 2170 | background-color: var(--backgroundColor); 2171 | border: none !important; 2172 | } 2173 | 2174 | .focused-qp-W9B, 2175 | .item-1BCeuB:hover { 2176 | background-color: var(--themeColor2); 2177 | color: #fff; 2178 | } 2179 | 2180 | .container-6sXIoE { 2181 | border: none !important; 2182 | } 2183 | 2184 | .circleIconButton_d4e182 { 2185 | background-color: rgba(0, 0, 0, .5); 2186 | color: var(--themeColor2); 2187 | } 2188 | 2189 | .avatar__1fed1, 2190 | .subscriptionsRedirectContainer-zD3U79, 2191 | .notice-2OK8bw, 2192 | .accountProfileCard__1fed1, 2193 | .noItemsCard__70151 { 2194 | background-color: rgba(0, 0, 0, .35) !important; 2195 | } 2196 | 2197 | .fieldList__1fed1, 2198 | .background__1fed1 { 2199 | background-color: transparent !important; 2200 | } 2201 | 2202 | .side_b3f026 .separator-2wx7h6 { 2203 | display: none !important; 2204 | } 2205 | 2206 | #bd-settings-sidebar .ui-tab-bar-header, 2207 | .side_b3f026 .header-2Kx1US { 2208 | width: 100%; 2209 | } 2210 | 2211 | .container_c8ffbb { 2212 | background-color: transparent !important; 2213 | } 2214 | 2215 | .circleIconButton__5bc7e { 2216 | background-color: rgba(0, 0, 0, .25) !important; 2217 | color: var(--themeColor1) !important; 2218 | } 2219 | 2220 | .header_f37cb1 { 2221 | box-shadow: none !important; 2222 | } 2223 | 2224 | .folder__48112 { 2225 | background-color: transparent !important; 2226 | } 2227 | 2228 | .expandedFolderBackground__48112, 2229 | .container_d8f25b, 2230 | .emptyCard__7e549 { 2231 | background-color: rgba(0, 0, 0, .25) !important; 2232 | } 2233 | 2234 | .tabBody__133bf:before, 2235 | .homeIcon__560eb>* { 2236 | display: none !important; 2237 | } 2238 | 2239 | .homeIcon__560eb { 2240 | background-color: transparent !important; 2241 | background-image: var(--homeImage); 2242 | background-position: var(--backgroundPosition); 2243 | background-repeat: var(--backgroundRepeat); 2244 | background-size: var(--backgroundSize); 2245 | height: 48px; 2246 | width: 48px; 2247 | } 2248 | 2249 | .addReactButton__34c2c, 2250 | .buttonInner__34c2c, 2251 | .container-2qVG6q:hover, 2252 | .iconWrapper__7e6bb, 2253 | .interactiveSelected__972a0, 2254 | .pill_a2c9e8, 2255 | .sidebarCard-1Gn1ch, 2256 | .theme-dark .container-3wLKDe { 2257 | background-color: transparent 2258 | } 2259 | 2260 | .connectContainer_c7f964, 2261 | .connection_c7f964, 2262 | .connectionHeader_c7f964, 2263 | .mainCard_f369db { 2264 | background-color: #00000080; 2265 | } 2266 | 2267 | .chat_f02135, 2268 | .container__34c2c, 2269 | .ctaBar-Nhk8yY, 2270 | .scroller_a39aa3, 2271 | .theme-dark .perk-19D_HN, 2272 | .theme-dark .perksModal-CLcR1c, 2273 | .theme-dark .tierBody-3ju-rc, 2274 | .theme-dark .tierHeaderLocked-3ItHYn { 2275 | background-color: transparent; 2276 | } 2277 | 2278 | .theme-dark .container-2qVG6q.isOpen-2OXbFs { 2279 | background-color: var(--backgroundColor); 2280 | border: 3px solid var(--themeColor1) 2281 | } 2282 | 2283 | .container__34c2c { 2284 | border: none 2285 | } 2286 | 2287 | .divider_ee23ac { 2288 | display: none 2289 | } 2290 | 2291 | .interactive-1vLZ_I:focus-within, 2292 | .interactive-1vLZ_I:hover { 2293 | background-color: var(--backgroundColor) 2294 | } 2295 | 2296 | .contentColumnWide__23e6b { 2297 | padding: 60px 138px 80px 2298 | } 2299 | 2300 | .section-3FmfOT { 2301 | padding: 12px 13px 0 12px 2302 | } 2303 | 2304 | .option__56fec:after { 2305 | background: 0 0 2306 | } 2307 | 2308 | .menu_c1e9c4 { 2309 | background-color: var(--backgroundColor); 2310 | } 2311 | 2312 | .list_c441f0 { 2313 | background-color: var(--backgroundColor); 2314 | } 2315 | 2316 | .header_d9c882 { 2317 | background-color: var(--backgroundColor); 2318 | } 2319 | 2320 | .container__6764b { 2321 | background-color: var(--backgroundColor); 2322 | border: 2px solid var(--themeColor1); 2323 | } 2324 | 2325 | .messageContainer__95796 { 2326 | border: 2px solid var(--themeColor1); 2327 | } 2328 | 2329 | .reaction_f8896c { 2330 | background-color: var(--backgroundColor); 2331 | } 2332 | 2333 | .button_f563df { 2334 | background-color: var(--backgroundColor); 2335 | } 2336 | 2337 | .lookFilled-1GseHa.select-1Ia3hD { 2338 | background-color: var(--backgroundColor); 2339 | } 2340 | 2341 | .wrapper__83b1d { 2342 | background-color: var(--backgroundColor); 2343 | } 2344 | 2345 | .theme-dark .tierBody_f15dca { 2346 | background-color: var(--backgroundColor); 2347 | } 2348 | 2349 | .tierHeaderContent_f15dca { 2350 | background-color: var(--backgroundColor); 2351 | } 2352 | 2353 | .featureCard_bebc5b { 2354 | background-color: var(--backgroundColor); 2355 | } 2356 | 2357 | .theme-dark .tooltipPrimary-3qLMbS, 2358 | .theme-light .tooltipPrimary-3qLMbS { 2359 | background-color: var(--backgroundColor); 2360 | } 2361 | 2362 | .card__11580 { 2363 | background-color: var(--backgroundColor); 2364 | } 2365 | 2366 | .card__11580:hover { 2367 | background-color: var(--backgroundColor); 2368 | } 2369 | 2370 | .promotionCard_d4883c { 2371 | background-color: var(--backgroundColor) !important; 2372 | } 2373 | 2374 | .overlayBackground-H1K9ZY, 2375 | .profileBadges-1GBCVy { 2376 | background-color: var(--backgroundColor) !important; 2377 | } 2378 | 2379 | .container-2nXUah { 2380 | background-color: var(--backgroundColor); 2381 | } 2382 | 2383 | .theme-dark .tierBody_f15dca { 2384 | background-color: var(--backgroundColor); 2385 | } 2386 | 2387 | .theme-dark .subscribersPopoutUser_f15dca, 2388 | .theme-dark .tierHeaderLocked_f15dca { 2389 | background-color: var(--backgroundColor); 2390 | } 2391 | 2392 | .theme-dark .tierHeaderLocked_f15dca, 2393 | .theme-dark .tierHeaderUnlocked_f15dca { 2394 | background-color: var(--backgroundColor); 2395 | } 2396 | 2397 | .theme-dark .headerClickable__43dab, 2398 | .theme-dark .headerDefault__43dab { 2399 | background-color: var(--backgroundColor); 2400 | } 2401 | 2402 | .xboxUpsellWrapper-3nr36v { 2403 | background-color: var(--backgroundColor); 2404 | } 2405 | 2406 | .valueProp-3RkB9k, 2407 | .valuePropIconContainer-334reN { 2408 | background-color: var(--backgroundColor); 2409 | } 2410 | 2411 | .container-2nXUah { 2412 | background-color: var(--backgroundColor); 2413 | } 2414 | 2415 | .userProfileInnerThemedNonPremium_c69a7b { 2416 | background-color: var(--backgroundColor); 2417 | background-image: none; 2418 | } 2419 | 2420 | .text-sm-medium_bc6ffc, 2421 | .text-sm-normal-3Zj3Iv { 2422 | color: #fff; 2423 | } 2424 | 2425 | .member__5d473 { 2426 | background: transparent; 2427 | } 2428 | 2429 | .theme-dark .container__37e49 { 2430 | background: transparent; 2431 | } 2432 | 2433 | .theme-dark .scrollableContainer__74017 { 2434 | background: transparent; 2435 | } 2436 | 2437 | .chatContent_f75fb0 { 2438 | background: transparent; 2439 | } 2440 | 2441 | .container_e131a9 { 2442 | background: transparent; 2443 | } 2444 | 2445 | .container_a54d1d { 2446 | background-color: var(--backgroundColor); 2447 | } 2448 | 2449 | .container__23c08 { 2450 | background-color: var(--backgroundColor) 2451 | } 2452 | 2453 | .friendRequestsButton__523aa { 2454 | background-color: var(--backgroundColor); 2455 | } 2456 | 2457 | .lookFilled__201d5.colorPrimary__201d5 { 2458 | background-color: var(--backgroundColor); 2459 | } 2460 | 2461 | .lookFilled__201d5.colorPrimary__201d5:hover { 2462 | background-color: var(--backgroundColor); 2463 | } 2464 | 2465 | .lookOutlined__201d5.colorRed__201d5 { 2466 | background-color: var(--backgroundColor); 2467 | } 2468 | 2469 | .lookFilled__201d5.colorBrand__201d5 { 2470 | background-color: var(--backgroundColor); 2471 | } 2472 | 2473 | .radioBar__001a7 { 2474 | background-color: var(--backgroundColor); 2475 | } 2476 | 2477 | .formNotice_f43ba5 { 2478 | background-color: var(--backgroundColor) !important; 2479 | } 2480 | 2481 | .theme-dark .bar_a562c8, 2482 | .theme-dark .markDash_a562c8 { 2483 | background: var(--backgroundColor) 2484 | } 2485 | 2486 | .barFill_a562c8 { 2487 | background: var(--gradientColor02) 2488 | } 2489 | 2490 | .lookFilled__3f413.select__3f413 { 2491 | background-color: var(--backgroundColor); 2492 | } 2493 | 2494 | .option__3f413 { 2495 | background-color: var(--backgroundColor); 2496 | } 2497 | 2498 | .option__3f413[aria-selected=true]:not(.option__3f413.multi__3f413) { 2499 | background-color: var(--backgroundColor); 2500 | } 2501 | 2502 | .option__3f413:hover { 2503 | background-color: var(--backgroundColor); 2504 | } 2505 | 2506 | .previewMessage__5d148 { 2507 | background-color: var(--backgroundColor); 2508 | } 2509 | 2510 | .interactive_bf202d:focus-within, 2511 | .interactive_bf202d:hover { 2512 | background-color: var(--backgroundColor) !important; 2513 | } 2514 | 2515 | .interactiveSelected__972a0 { 2516 | background: var(--backgroundColor) !important; 2517 | } 2518 | 2519 | .radioBar__001a7.radioPositionLeft__001a7:hover { 2520 | background-color: var(--backgroundColor); 2521 | } 2522 | 2523 | .connectContainer_c7f964, 2524 | .connectionHeader_c7f964 { 2525 | background-color: var(--backgroundColor); 2526 | } 2527 | 2528 | .accountButtonInner_c7f964 { 2529 | background-color: var(--backgroundColor); 2530 | } 2531 | 2532 | .metadataContainer_c7f964 { 2533 | background-color: var(--backgroundColor); 2534 | margin: 0px; 2535 | } 2536 | 2537 | .card-16VQ8C { 2538 | background-color: var(--backgroundColor); 2539 | } 2540 | 2541 | .channelRow_e4503a:not(.disabled_e4503a) { 2542 | background-color: var(--backgroundColor); 2543 | } 2544 | 2545 | .container_bc0d35, 2546 | .nuxContent_bc0d35 { 2547 | background-color: var(--backgroundColor); 2548 | } 2549 | 2550 | .channelRow_e4503a:hover:not(.disabled_e4503a) { 2551 | background-color: var(--themeColor1); 2552 | } 2553 | 2554 | .tabBar__0b563 { 2555 | background-color: transparent; 2556 | border-bottom: var(--backgroundColor); 2557 | } 2558 | 2559 | .theme-dark .container__0b563, 2560 | .theme-dark .header__0b563 { 2561 | background-color: transparent; 2562 | } 2563 | 2564 | .profileCard__5d7c9 { 2565 | background-color: var(--backgroundColor); 2566 | } 2567 | 2568 | .prompt__5d7c9 { 2569 | background-color: var(--backgroundColor); 2570 | } 2571 | 2572 | .optionButtonWrapper__270d7:hover { 2573 | background-color: var(--themeColor1); 2574 | } 2575 | 2576 | .optionButtonWrapper__270d7 { 2577 | border-color: var(--themeColor1) !important; 2578 | } 2579 | 2580 | .optionButtonWrapper__270d7.selected__270d7 { 2581 | background-color: var(--themeColor1); 2582 | } 2583 | 2584 | .optionButtonWrapper__270d7:hover .text-md-medium_b12de1 { 2585 | color: #000 !important; 2586 | } 2587 | 2588 | .optionButtonWrapper__270d7:hover .text-xs-normal_ccc5fb { 2589 | color: #000 !important; 2590 | } 2591 | 2592 | .card-8UsK4b { 2593 | background-color: var(--backgroundColor); 2594 | border-color: var(--themeColor1); 2595 | } 2596 | 2597 | .card-8UsK4b:hover { 2598 | background-color: var(--themeColor1); 2599 | } 2600 | 2601 | .header-1sd0RU { 2602 | background-color: var(--backgroundColor); 2603 | } 2604 | 2605 | .contentContainer-BWAau5 { 2606 | background-color: var(--backgroundColor); 2607 | } 2608 | 2609 | .editCard_a25a68 { 2610 | background-color: var(--backgroundColor); 2611 | } 2612 | 2613 | .mentionLimitContainer_ed9c90 { 2614 | background-color: var(--backgroundColor); 2615 | } 2616 | 2617 | .actionContainer__6446f { 2618 | background-color: var(--backgroundColor); 2619 | } 2620 | 2621 | .triggerSettingsContainer_b6c6eb { 2622 | background-color: var(--backgroundColor); 2623 | } 2624 | 2625 | .stepperContainer_ed9c90 { 2626 | background-color: var(--backgroundColor); 2627 | } 2628 | 2629 | .editCard_a25a68.toggled_a25a68.active_ef2ec5 { 2630 | background-color: var(--backgroundColor); 2631 | } 2632 | 2633 | .mainContainer_c5e6a1, 2634 | .ruleIconContainer_c5e6a1 { 2635 | background-color: var(--backgroundColor); 2636 | } 2637 | 2638 | .wrapper__83b1d { 2639 | background-color: var(--backgroundColor); 2640 | } 2641 | 2642 | .roleRow_a930f1:hover:not(.roleRowDisableHover_a930f1) { 2643 | background-color: var(--backgroundColor); 2644 | } 2645 | 2646 | .backgroundContainer_eaaeee { 2647 | background-color: var(--backgroundColor); 2648 | } 2649 | 2650 | .fieldBackground_eaaeee { 2651 | background-color: var(--backgroundColor); 2652 | } 2653 | 2654 | .containerFooter_eaaeee { 2655 | background-color: var(--backgroundColor); 2656 | } 2657 | 2658 | .fieldFooterContainer_eaaeee { 2659 | background-color: var(--backgroundColor); 2660 | } 2661 | 2662 | .backgroundModifierContainer_e5c5d5 { 2663 | background-color: var(--backgroundColor); 2664 | } 2665 | 2666 | .upsellContent__4cfe2 { 2667 | background-color: var(--backgroundColor); 2668 | } 2669 | 2670 | .upsellFooter__4cfe2 { 2671 | background-color: var(--backgroundColor); 2672 | } 2673 | 2674 | .checklistItem__812a7 { 2675 | background-color: var(--backgroundColor); 2676 | } 2677 | 2678 | .header__812a7 { 2679 | background-color: var(--backgroundColor); 2680 | } 2681 | 2682 | .previewContainer__5579e { 2683 | background-color: var(--backgroundColor); 2684 | } 2685 | 2686 | .enableContainer__5ea8c { 2687 | background-color: var(--backgroundColor); 2688 | } 2689 | 2690 | .descriptionBox__981f7 { 2691 | background-color: var(--backgroundColor); 2692 | } 2693 | 2694 | .analyticsCard__5931c { 2695 | background-color: var(--backgroundColor); 2696 | } 2697 | 2698 | .developerPortalCtaWrapper_bf485f { 2699 | background-color: var(--backgroundColor); 2700 | } 2701 | 2702 | .welcomeChannel__5579e { 2703 | background-color: var(--backgroundColor); 2704 | } 2705 | 2706 | .theme-dark .directoryModal-YJsOMv { 2707 | background-color: transparent; 2708 | } 2709 | 2710 | .card_e90143 { 2711 | background-color: var(--backgroundColor); 2712 | } 2713 | 2714 | .textContainer_d9c848 { 2715 | background-color: var(--backgroundColor); 2716 | } 2717 | 2718 | .lastSection-3_1yKt { 2719 | padding-bottom: 22px !important; 2720 | } 2721 | 2722 | .theme-dark .message__89466 { 2723 | background-color: var(--backgroundColor); 2724 | } 2725 | 2726 | /* Server Boost */ 2727 | .guildHeader__30707 { 2728 | background-color: rgba(0, 0, 0, .4); 2729 | } 2730 | 2731 | .guildSubscriptionSlots__5823d { 2732 | background-color: rgba(0, 0, 0, .3); 2733 | } 2734 | 2735 | .guildSubscriptionSlot_b76fc6 { 2736 | border-bottom: 1px solid rgba(0, 0, 0, .1); 2737 | } 2738 | 2739 | /* Reply Bar */ 2740 | .replyBar__841c8, 2741 | .threadSuggestionBar__841c8 { 2742 | background-color: var(--backgroundColor); 2743 | } 2744 | 2745 | /* Search */ 2746 | .searchBar__97492, 2747 | .searchHeader_f3b986, 2748 | .searchResult__02a39 { 2749 | background-color: var(--backgroundColor); 2750 | } 2751 | 2752 | .theme-dark .rootWithShadow__49fc1 { 2753 | background-color: var(--backgroundColor); 2754 | } 2755 | 2756 | .theme-dark .footerSeparator__49fc1 { 2757 | background-color: var(--backgroundColor); 2758 | } 2759 | 2760 | .theme-dark .calendarPicker_d27f17 .react-datepicker { 2761 | background-color: var(--backgroundColor); 2762 | } 2763 | 2764 | .theme-dark .calendarPicker_d27f17 .react-datepicker__day { 2765 | background-color: var(--backgroundColor); 2766 | } 2767 | 2768 | .overlayBackground-1KgwVi { 2769 | background-color: rgba(1, 1, 1, 0.5); 2770 | border: 1px solid transparent; 2771 | } 2772 | .input__0f084 { 2773 | background-color: transparent; 2774 | border: 0px; 2775 | } 2776 | 2777 | .theme-dark .calendarPicker_d27f17 .react-datepicker__day--disabled, 2778 | .theme-dark .calendarPicker_d27f17 .react-datepicker__day--outside-month, 2779 | .theme-dark .calendarPicker_d27f17 .react-datepicker__day.react-datepicker__day--disabled, 2780 | .theme-dark .calendarPicker_d27f17 .react-datepicker__day.react-datepicker__day--disabled:hover { 2781 | background-color: var(--backgroundColor); 2782 | } 2783 | 2784 | .theme-dark .calendarPicker_d27f17 .react-datepicker__header { 2785 | background-color: var(--backgroundColor); 2786 | } 2787 | 2788 | .profileBadges-31rDHI { 2789 | background-color: rgba(1, 1, 1, 0.5); 2790 | } 2791 | 2792 | .panelBanner-13bsBR { 2793 | border-left: 3px solid var(--backgroundColor); 2794 | } 2795 | 2796 | .welcomeCTAButton_f5d1e2 { 2797 | border: 3px solid var(--backgroundColor); 2798 | border-radius: 10px; 2799 | } 2800 | 2801 | .container__0f711 { 2802 | background-color: var(--backgroundColor); 2803 | } 2804 | 2805 | .theme-dark .panel__5dec7 { 2806 | background: none; 2807 | } 2808 | 2809 | .container_cc2dff .reactors_cc2dff { 2810 | background: var(--backgroundColor); 2811 | } 2812 | 2813 | .scroller_cc2dff { 2814 | background: none; 2815 | border-right: 2px solid var(--themeColor1); 2816 | } 2817 | 2818 | .matchingPostsRow_f369db { 2819 | background-color: var(--backgroundColor); 2820 | } 2821 | 2822 | .footer__51eb2 { 2823 | background-color: var(--backgroundColor); 2824 | } 2825 | 2826 | .body__51eb2.hasSplash__51eb2 { 2827 | background-color: var(--backgroundColor); 2828 | } 2829 | 2830 | .description__51eb2 { 2831 | color: #fff !important; 2832 | } 2833 | 2834 | .memberText__51eb2 { 2835 | color: #fff !important; 2836 | } 2837 | 2838 | .theme-dark .container_c791b2, 2839 | .theme-dark .page_c791b2 { 2840 | background-color: transparent; 2841 | border-color: var(--themeColor1); 2842 | } 2843 | 2844 | .table_b4ec0b { 2845 | background-color: var(--backgroundColor); 2846 | border-color: var(--themeColor1); 2847 | } 2848 | 2849 | .searchHeader__98d1c, 2850 | .searchHeaderContainer__98d1c { 2851 | background-color: var(--backgroundColor); 2852 | border-color: var(--themeColor1); 2853 | } 2854 | 2855 | .paginationContainer_e8f197 { 2856 | background-color: var(--backgroundColor); 2857 | border-color: var(--themeColor1); 2858 | } 2859 | 2860 | .button__71c22 { 2861 | color: #fff; 2862 | background-color: var(--backgroundColor); 2863 | } 2864 | 2865 | .text-md-normal__6a4eb { 2866 | color: #fff !important; 2867 | } 2868 | 2869 | .button__71c22:hover { 2870 | background-color: var(--themeColor1); 2871 | color: var(--backgroundColor); 2872 | } 2873 | 2874 | .container__33507 { 2875 | background-color: #0006; 2876 | } 2877 | 2878 | .mainTableContainer__09a38, 2879 | .noResultsContainer-2YrKBF { 2880 | border: 2px solid var(--themeColor1); 2881 | border-radius: 0px !important; 2882 | } 2883 | 2884 | .memberRowContainer__71c22:hover td { 2885 | background-color: var(--themeColor1) !important; 2886 | } 2887 | 2888 | .memberRowContainer__71c22:hover td .text-sm-medium_bc6ffc { 2889 | color: #000 !important; 2890 | } 2891 | 2892 | .memberRowContainer__71c22:hover .text-sm-normal__95a78 { 2893 | color: #000 !important; 2894 | } 2895 | 2896 | .memberRowContainer__71c22:hover .username_d272d6 { 2897 | color: #000 !important; 2898 | } 2899 | 2900 | .memberRowContainer__71c22:hover .text-xs-normal_ccc5fb { 2901 | color: #000 !important; 2902 | } 2903 | 2904 | .memberRowContainer__71c22:hover .roleNameOverflow__48c1c { 2905 | color: #000 !important; 2906 | } 2907 | 2908 | .mainTableContainer__09a38, 2909 | .noResultsContainer-2YrKBF { 2910 | background-color: var(--themeColor1); 2911 | } 2912 | 2913 | .container_faa96b:hover { 2914 | background-color: #00000080 !important; 2915 | } 2916 | 2917 | .container-3arpDl { 2918 | background-color: #00000080 !important; 2919 | } 2920 | 2921 | .descriptionContainer-2ylKGk { 2922 | background-color: #00000080 !important; 2923 | } 2924 | 2925 | .linkContainer-2xEQjX { 2926 | background-color: #00000080 !important; 2927 | } 2928 | 2929 | .gradient-1SYq38 { 2930 | background: #00000080 !important; 2931 | } 2932 | 2933 | .chat_f75fb0 { 2934 | background: transparent; 2935 | } 2936 | 2937 | .chatContent_f75fb0 { 2938 | background: transparent; 2939 | } 2940 | 2941 | .container_c8ffbb, 2942 | .membersWrap_c8ffbb { 2943 | background: transparent; 2944 | } 2945 | 2946 | .members_c8ffbb { 2947 | background: transparent; 2948 | } 2949 | 2950 | .channelTextArea_f75fb0 { 2951 | background: transparent; 2952 | } 2953 | 2954 | .theme-dark .container__37e49 { 2955 | background: transparent; 2956 | } 2957 | 2958 | .theme-dark .form_f75fb0:before { 2959 | display: none; 2960 | } 2961 | 2962 | .container_e131a9 { 2963 | background: transparent; 2964 | } 2965 | 2966 | .theme-dark .panel__5dec7 { 2967 | background: transparent; 2968 | } 2969 | 2970 | /* Forum Post */ 2971 | .container__01ae2 { 2972 | background-color: var(--backgroundColor); 2973 | border-radius: 0px; 2974 | border-color: transparent; 2975 | } 2976 | .resizeHandle__01ae2 { 2977 | background-color: var(--themeColor1); 2978 | width: 1px; 2979 | } 2980 | 2981 | .base_b88801 { 2982 | background: transparent; 2983 | } 2984 | 2985 | .theme-dark .container_faa96b.isOpen_faa96b { 2986 | background-color: #00000099; 2987 | border: 2px solid var(--themeColor1); 2988 | } 2989 | 2990 | .messages__1ccd1 { 2991 | background-color: var(--backgroundColor); 2992 | } 2993 | 2994 | .container_faa96b:hover { 2995 | border: 2px solid var(--themeColor1); 2996 | } 2997 | 2998 | .userProfileInnerThemedNonPremium_c69a7b .overlayBackground_c69a7b { 2999 | background-color: var(--backgroundColor); 3000 | } 3001 | 3002 | .theme-dark .tooltipPrimary__382e7, 3003 | .theme-light .tooltipPrimary__382e7 { 3004 | background-color: var(--backgroundColor); 3005 | } 3006 | 3007 | .topPill_b3f026 .themed_b3f026.selected_b3f026.item_b3f026, 3008 | .side_b3f026 .themed_b3f026.selected_b3f026.item_b3f026 { 3009 | background-color: var(--backgroundColor); 3010 | } 3011 | 3012 | .topPill_b3f026 .themed_b3f026.item_b3f026:hover:not(.disabled_b3f026), 3013 | .side_b3f026 .themed_b3f026.item_b3f026:hover:not(.disabled_b3f026) { 3014 | background-color: var(--backgroundColor); 3015 | } 3016 | 3017 | .carouselModal_d2b9a1 { 3018 | background: transparent !important; 3019 | } 3020 | 3021 | .callContainer_cb9592 { 3022 | background: transparent; 3023 | } 3024 | 3025 | .container_f369db { 3026 | background: transparent; 3027 | } 3028 | 3029 | .box_ee23ac { 3030 | background: transparent; 3031 | } 3032 | 3033 | .wrapper_d852db { 3034 | background: transparent; 3035 | } 3036 | 3037 | .reaction__23977 { 3038 | background: #00000020; 3039 | } 3040 | 3041 | .reaction__23977:hover { 3042 | background-color: #00000050; 3043 | } 3044 | 3045 | .reaction__23977.reactionMe__23977 { 3046 | background-color: #00000050; 3047 | } 3048 | 3049 | .codeActions__75297 { 3050 | display: contents; 3051 | z-index: 3; 3052 | } 3053 | 3054 | .modeUnreadImportant__2ea32 .name__2ea32 { 3055 | color: #ccc; 3056 | 3057 | } 3058 | 3059 | .icon__183c2 { 3060 | color: var(--themeColor1); 3061 | } 3062 | 3063 | .base_b88801 { 3064 | background-color: transparent; 3065 | } 3066 | 3067 | .container_ca49a1 { 3068 | background-color: var(--backgroundColor); 3069 | } 3070 | 3071 | .descriptionContainer_ca49a1 { 3072 | background-color: var(--backgroundColor); 3073 | } 3074 | 3075 | .linkContainer_ca49a1 { 3076 | background-color: var(--backgroundColor); 3077 | } 3078 | 3079 | .gradient_ca49a1 { 3080 | display: none; 3081 | } 3082 | 3083 | .iconContainer_fea832, 3084 | .icon_fea832 { 3085 | width: 21px; 3086 | height: 21px; 3087 | color: #fff; 3088 | transition: ease-in-out .3s; 3089 | } 3090 | 3091 | .searchBar__97492 { 3092 | width: 21px; 3093 | height: 24px; 3094 | padding: 0; 3095 | background: none; 3096 | transition: ease-in-out 0.3s !important; 3097 | } 3098 | 3099 | .searchBar__97492:hover .iconContainer_fea832, 3100 | .searchBar__97492:hover .icon_fea832, 3101 | .focused__97492 .icon_fea832, 3102 | .focused__97492 .iconContainer_fea832 { 3103 | opacity: 0; 3104 | width: 0; 3105 | height: 0; 3106 | } 3107 | 3108 | .searchBar__97492:hover, 3109 | .focused__97492 .searchBar__97492, 3110 | .open__97492 .searchBar__97492 { 3111 | width: 175px; 3112 | background: transparent; 3113 | border: 2px solid #ffffff50; 3114 | } 3115 | 3116 | .emojiLockIconContainer_d982c2 { 3117 | display: none; 3118 | } 3119 | 3120 | .container__0be77 { 3121 | background-color: #00000050; 3122 | } 3123 | 3124 | .scroller__01c8c { 3125 | background-color: var(--backgroundColor); 3126 | } 3127 | 3128 | .container__6e389, 3129 | .voters__01c8c { 3130 | background-color: var(--backgroundColor); 3131 | } 3132 | 3133 | .badge_b37eda { 3134 | background-color: var(--backgroundColor); 3135 | } 3136 | 3137 | .wrapper_c0e32c { 3138 | background-color: var(--backgroundColor); 3139 | } 3140 | 3141 | .header_c0e32c { 3142 | background-color: var(--backgroundColor); 3143 | } 3144 | 3145 | .list_c656ac { 3146 | background-color: var(--backgroundColor); 3147 | } 3148 | 3149 | .inspector_aeaaeb { 3150 | background-color: var(--backgroundColor); 3151 | } 3152 | 3153 | .categoryList_c0e32c { 3154 | background-color: var(--backgroundColor); 3155 | } 3156 | 3157 | .soundInfo__6d4ed, 3158 | .soundButton__6d4ed { 3159 | background: var(--backgroundColor); 3160 | } 3161 | 3162 | .soundAddButton__58c6c:hover, 3163 | .soundAddButton__58c6c.focused__58c6c { 3164 | background: var(--backgroundColor); 3165 | border: 2px solid var(--themeColor) 3166 | } 3167 | 3168 | .iconWrapper__9293f path { 3169 | fill: var(--interactive-active) !important; 3170 | } 3171 | 3172 | .wrapper__4e6ce { 3173 | background-color: var(--backgroundColor); 3174 | } 3175 | 3176 | .categoryIcon_a1e0e0[data-list-item-id="NO_LIST___soundboard_guild_0"] { 3177 | content: ""; 3178 | width: 24px; 3179 | background-color: transparent !important; 3180 | height: 24px; 3181 | padding: 4px; 3182 | justify-content: center; 3183 | align-items: center; 3184 | background-repeat: no-repeat; 3185 | background-size: contain; 3186 | background-position: center; 3187 | background-image: url("https://imgur.com/eItxuAq.png"); 3188 | } 3189 | 3190 | .categoryIcon_a1e0e0[data-list-item-id="NO_LIST___soundboard_guild_0"]>.categoryIconIcon_a1e0e0 { 3191 | display: none; 3192 | } 3193 | 3194 | .categoryIcon_b9ee0c { 3195 | color: var(--themeColor01); 3196 | } 3197 | 3198 | .modalHeader__52f07 { 3199 | background-color: var(--backgroundColor); 3200 | } 3201 | 3202 | .scroller__35455 { 3203 | background-color: var(--backgroundColor); 3204 | } 3205 | 3206 | .footer__52f07 { 3207 | background-color: var(--backgroundColor); 3208 | } 3209 | 3210 | .activityTextContainer__18da2 { 3211 | background-color: var(--backgroundColor); 3212 | } 3213 | 3214 | .unicodeShortcut_b9ee0c { 3215 | color: var(--themeColor01); 3216 | } 3217 | 3218 | .section__00943 { 3219 | background-color: var(--backgroundColor); 3220 | } 3221 | 3222 | .container_a68543 { 3223 | background-color: #00000080; 3224 | } 3225 | 3226 | .stepContainer_a68543 { 3227 | background-color: var(--backgroundColor); 3228 | } 3229 | 3230 | .container__93db4 { 3231 | background-color: #00000080; 3232 | } 3233 | 3234 | .sortDropdown_f369db { 3235 | background-color: #00000080; 3236 | } 3237 | 3238 | .preview_ee8e87 { 3239 | background-color: var(--backgroundColor); 3240 | } 3241 | 3242 | .container_ee8e87 { 3243 | background-color: #00000080; 3244 | } 3245 | 3246 | .post_ee8e87 { 3247 | background-color: var(--backgroundColor); 3248 | } 3249 | 3250 | .header_fed6d3 { 3251 | background-color: var(--backgroundColor); 3252 | } 3253 | 3254 | .inner_a45028 { 3255 | background-color: var(--backgroundColor); 3256 | } 3257 | 3258 | .secondary__06eda { 3259 | background-color: var(--backgroundColor); 3260 | } 3261 | 3262 | .container_fc561d { 3263 | background-color: var(--backgroundColor); 3264 | } 3265 | 3266 | .credentialList__6c75d { 3267 | background-color: var(--backgroundColor); 3268 | } 3269 | 3270 | .stickerCategoryGenericSelected__3ad28 .stickerCategoryGenericIcon__3ad28 { 3271 | color: var(--mainColor); 3272 | } 3273 | 3274 | .container__5dbf8 { 3275 | background-color: #00000080; 3276 | } 3277 | 3278 | .container__8cc9a { 3279 | background-color: #00000080; 3280 | } 3281 | 3282 | .container__5b321 { 3283 | background-color: #00000080; 3284 | } 3285 | 3286 | .box_d9914b { 3287 | background-color: #00000080; 3288 | } 3289 | 3290 | .row__0624f{ 3291 | background-color: #00000080; 3292 | } 3293 | 3294 | .theme-dark .themed__9293f,.theme-dark .children__9293f:after{ 3295 | background: transparent; 3296 | } 3297 | 3298 | .autocomplete__13533{ 3299 | background-color: var(--backgroundColor); 3300 | } 3301 | 3302 | .wrapperAudio_cf09d8 { 3303 | background-color: var(--backgroundColor); 3304 | } 3305 | 3306 | .textContainer__4d95d { 3307 | background-color: var(--backgroundColor); 3308 | } 3309 | 3310 | .hljs { 3311 | background-color: var(--backgroundColor); 3312 | } 3313 | 3314 | .footer__4d95d { 3315 | background-color: var(--backgroundColor); 3316 | } 3317 | 3318 | .grid__623de { 3319 | background-color: var(--backgroundColor); 3320 | } 3321 | 3322 | .markup__75297 code { 3323 | background-color: var(--backgroundColor); 3324 | } 3325 | 3326 | .content_fed6d3{background-color: var(--backgroundColor);} 3327 | .wrapper_f7ecac{background-color: var(--backgroundColor);} 3328 | .icon_f84418 { 3329 | color: var(--interactive-normal) !important; 3330 | } 3331 | .button_f7ecac:hover {color: var(--backgroundColor);} 3332 | 3333 | /* Hide Playing Now */ 3334 | .nowPlayingColumn__133bf { 3335 | position: relative; 3336 | left: 350px ; 3337 | opacity: 1; 3338 | margin-left: -350px; 3339 | transition: .5s all ease-out; 3340 | } 3341 | .nowPlayingColumn__133bf:hover { 3342 | left: 0 ; 3343 | opacity: 1; 3344 | margin-left: 0; 3345 | transition: .5s all ease-out; 3346 | } 3347 | 3348 | /* Category Names back to original color */ 3349 | .icon__29444, .mainContent__29444>.container__13cf1, .children__29444{ 3350 | color: var(--themeColor1) !important; 3351 | } 3352 | .addButtonIcon__29444:hover, .mainContent__29444>.container__13cf1:hover, .children__29444:hover{ 3353 | color: var(--themeColor2) !important; 3354 | } 3355 | /*Animated server banner/server banner transparency*/ 3356 | .animatedContainer_f37cb1{ 3357 | background-color: transparent; 3358 | } 3359 | 3360 | .bannerImage_f37cb1:before{ 3361 | background-color: transparent; 3362 | } 3363 | /*soundboard*/ 3364 | .picker__09f65.refresh__09f65{ 3365 | background-color: var(--backgroundColor); 3366 | } 3367 | 3368 | .soundButtonInteractiveRefresh__6d4ed { 3369 | background: var(--backgroundColor); opacity: .9; 3370 | } 3371 | 3372 | .membersGroup_c8ffbb::before,.membersGroup_c8ffbb::after{ 3373 | box-shadow:none; 3374 | } 3375 | 3376 | [class*="themedBackground"] { 3377 | background: transparent; 3378 | } 3379 | 3380 | .container_eb2cd2{ 3381 | background-color: var(--backgroundColor); 3382 | } 3383 | 3384 | .footer__214dc{ 3385 | display: none; 3386 | } 3387 | 3388 | .scrollerContainer_cdb2b0{ 3389 | background-color: var(--backgroundColor); 3390 | } 3391 | 3392 | .theme-dark .bannedUser_cdb2b0{ 3393 | background-color: var(--backgroundColor) 3394 | } 3395 | 3396 | /*channels and roles*/ 3397 | .pageBody__5d7c9, .scroller__5d7c9{ 3398 | background-color:transparent ; 3399 | } 3400 | 3401 | .theme-dark .container__0b563, .theme-dark .header__0b563{ 3402 | background-color:transparent !important; 3403 | } 3404 | 3405 | .theme-dark .content__37e49{ 3406 | background-color: transparent; 3407 | } 3408 | 3409 | .pageBody__41ed7{ 3410 | background:transparent; 3411 | 3412 | } 3413 | 3414 | .channelRow_e4503a{ 3415 | background:transparent; 3416 | } 3417 | 3418 | .layout__91a9d{ 3419 | width: auto; 3420 | } 3421 | 3422 | .membersGroup_c8ffbb{ 3423 | width: unset; 3424 | } 3425 | 3426 | .selected__91a9d .childContainer__91a9d,.clickable__91a9d:hover .childContainer__91a9d{ 3427 | background-color: transparent; 3428 | } 3429 | 3430 | 3431 | 3432 | /*yep cock*/ 3433 | .selected__91a9d .childContainer__91a9d,.clickable__91a9d:hover .childContainer__91a9d{background-color: transparent;} 3434 | .visual-refresh .bg__960e4{background: var(--backgroundImage); 3435 | background-repeat: var(--backgroundRepeat); 3436 | background-size: var(--backgroundSize); 3437 | background-image: var(--backgroundImage); 3438 | opacity: var(--backgroundOpacity); 3439 | filter: blur(var(--backgroundBlur)); 3440 | } 3441 | .visual-refresh .chatContent_f75fb0{background: transparent;} 3442 | .visual-refresh .container__7641b{background: transparent;} 3443 | 3444 | .visual-refresh .channelAttachmentArea_b77158{background-color: transparent;margin: none;} 3445 | .visual-refresh .upload_aa605f{background-color: var(--backgroundColor);} 3446 | .button_f7ecac{background-color: var(--backgroundColor);} 3447 | .spoilerContainer__54ab5{background-color: var(--backgroundColor);} 3448 | .file__0ccae{background-color: var(--backgroundColor);} 3449 | .visual-refresh .tabBody__133bf{background-color: transparent} 3450 | .visual-refresh .sidebar_c48ade:after{display: none;} 3451 | .visual-refresh .sidebarList_c48ade{border: none;} 3452 | .visual-refresh .wrapper_d852db{background-color: transparent} 3453 | .visual-refresh .activityText__5d473{color: #fff;} 3454 | :where(.visual-refresh) .colorDefault_c1e9c4 .label_c1e9c4{color: var(--themeColor1);} 3455 | .visual-refresh .brand_b3f026.item_b3f026, .visual-refresh .themed_b3f026.item_b3f026{color: #fff;} 3456 | .visual-refresh .container_f369db{background-color: transparent} 3457 | .visual-refresh .messageContainer__95796,.visual-refresh .channelHeader__35a7e{background-color: var(--backgroundColor);} 3458 | .visual-refresh .messageContainer__95796{border: 1px solid var(--themeColor1);} 3459 | .visual-refresh .contentWrapper__08434,.visual-refresh .emojiPickerHasTabWrapper_c0e32c .header_c0e32c,.visual-refresh .wrapper__14245{background-color: var(--backgroundColor);} 3460 | .visual-refresh .mainCard_f369db{background-color: var(--backgroundColor);} 3461 | .visual-refresh .header_c0e32c{background-color: var(--backgroundColor);} 3462 | .visual-refresh .channelTextArea_f75fb0{background-color: var(--backgroundColor);} 3463 | .wrapper_c0e32c, .wrapper_c0e32c.isBurstReactionPicker_c0e32c{background-color: var(--backgroundColor);} 3464 | .visual-refresh .header_fed6d3{background-color: var(--backgroundColor);} 3465 | #app-mount .applicationStore_f07d62, #app-mount .bg__960e4, #app-mount .chat_f75fb0, #app-mount .container__2637a, #app-mount .container__133bf, #app-mount .container-7Unqij, #app-mount .container__9293f.themed__9293f, #app-mount .contentRegion__23e6b, #app-mount .contentRegionScroller__23e6b, #app-mount .editor__2a891, #app-mount .emptyPreview__48b20, #app-mount .header_adb41f, #app-mount .inviteToolbar__133bf, #app-mount .keyboardShortcutsModal_f061f6, #app-mount .layer__960e4, #app-mount .members_c8ffbb, #app-mount .members_c8ffbb>div, #app-mount .modalTitle_f061f6, #app-mount .nowPlayingColumn__133bf, #app-mount .panels_c48ade, #app-mount .privateChannels__35e86, #app-mount .scroller_fb04e1, #app-mount .scroller__244e5, #app-mount .scroller__4a84a, #app-mount .scroller_ef3116, #app-mount .scroller__99e7c, #app-mount .scroller__7d20c, #app-mount .sidebar__23e6b, #app-mount .sidebarRegionScroller__23e6b, #app-mount .stageSection-3mAD8V, #app-mount .standardSidebarView__23e6b, #app-mount .themeEditor_cf6da1, #app-mount .threadSidebar-1o3BTy, #app-mount .tile__90dc5, #app-mount .titleBar__421ed, #app-mount .videoWrapper__2f4f7, #app-mount .wrapper_ef3116, #app-mount .wrapper_cb9592 3466 | {border: none !important;} 3467 | .visual-refresh .container_c8ffbb{border: none !important;} 3468 | .visual-refresh .footer__4d95d,.visual-refresh .textContainer__4d95d,.visual-refresh .container__34c2c, .visual-refresh .header__34c2c,.visual-refresh .hljs{background-color: transparent;} 3469 | .visual-refresh .wrapper__44df5{background-color: var(--backgroundColor);} 3470 | .visual-refresh .container__9293f,.bar_c38106{border: none !important;} 3471 | .visual-refresh .scroller_ef3116{width: 83px;} 3472 | .visual-refresh .container__01ae2{background-color: transparent;} 3473 | .field__1fed1{background-color: var(--backgroundColor);} -------------------------------------------------------------------------------- /themes-files/neutron.theme.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @name Neutron 3 | * @version 8.1 4 | * @description A simple but highly customizable theme, now sugar free! 5 | * @author Spectra 6 | * @invite PZdnCVD 7 | * @source https://github.com/xcruxiex/themes 8 | * @website https://betterdiscord.app/theme/Neutron 9 | *//* 10 | $$\ $$\ $$$$$$$$\ $$\ $$\ $$$$$$$$\ $$$$$$$\ $$$$$$\ $$\ $$\ 11 | $$$\ $$ |$$ _____|$$ | $$ |\__$$ __|$$ __$$\ $$ __$$\ $$$\ $$ | 12 | $$$$\ $$ |$$ | $$ | $$ | $$ | $$ | $$ |$$ / $$ |$$$$\ $$ | 13 | $$ $$\$$ |$$$$$\ $$ | $$ | $$ | $$$$$$$ |$$ | $$ |$$ $$\$$ | 14 | $$ \$$$$ |$$ __| $$ | $$ | $$ | $$ __$$< $$ | $$ |$$ \$$$$ | 15 | $$ |\$$$ |$$ | $$ | $$ | $$ | $$ | $$ |$$ | $$ |$$ |\$$$ | 16 | $$ | \$$ |$$$$$$$$\ \$$$$$$ | $$ | $$ | $$ | $$$$$$ |$$ | \$$ | 17 | \__| \__|\________| \______/ \__| \__| \__| \______/ \__| \__| 18 | */ 19 | @import url("https://xcruxiex.github.io/themes/themes-cores/neutron8.css"); 20 | @import url("https://xcruxiex.github.io/themes/core/badges.css"); 21 | @import url("https://xcruxiex.github.io/themes/core/custom-font.css"); 22 | @import url("https://xcruxiex.github.io/themes/core/settings-icons.css"); 23 | @import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap'); /* Custom font import link (see fonts.google.com) */ 24 | /*########################################################################## 25 | 26 | CHANGE VALUES BELOW TO CUSTOMIZE YOU THEME 27 | 28 | ##########################################################################*/ 29 | :root { 30 | /* COLORS */ 31 | --themeColor1: #36D1DC; /* Theme's color 1 */ 32 | --themeColor2: #5B86E5; /* Theme's color 2 */ 33 | 34 | /* CUSTOM FONT */ 35 | --customFont: 'Open sans', sans-serif; /* Custom font, change the name in 'font name here', you must import the font first */ 36 | 37 | /* HOME BUTTON */ 38 | --homeImage: url('https://i.imgur.com/gvFYrTh.png');/* Home button image, must be a direct link | You can also set it to a gradient, google "css gradient"*/ 39 | --homeImageSize: cover;/* To cover the button, set to "cover". You can also set it to "100% 100%" but the image will be stretched. Set to "contain" to see the entire image */ 40 | 41 | /* BACKGROUND */ 42 | --backgroundColor: #0d0d0d; /* Background color */ 43 | --backgroundImage: url('https://i.imgur.com/Qu2Tci2.jpeg'); /* Backround image, must be a direct link | You can also set it to a gradient, google "css gradient"*/ 44 | --backgroundPosition: center; /* Image position | center, left, right, bottom, top */ 45 | --backgroundSize: cover; /* To cover the entire app, set to "cover". You can also set it to "100% 100%" but the image will be stretched. Set to "contain" to see the entire image */ 46 | --backgroundRepeat: no-repeat; /* if you want the image to repeat | Google "css background repeat" */ 47 | --backgroundBlur: 100px; /* Set to 0 to remove blur | Set to 10px for average blur */ 48 | --backgroundOpacity: .65; /* 0 is transparent */ 49 | 50 | /* CODE BLOCKS */ 51 | --backgroundCode: rgba(0,0,0,.5); 52 | --backgroundName: rgba(0,0,0,.5); 53 | } 54 | -------------------------------------------------------------------------------- /themes-files/nocturnal.theme.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @name Nocturnal 3 | * @version 3.0.1 4 | * @description For when default discord just isn't dark enough, a theme for those who live a night 5 | * @author Spectra 6 | * @invite PZdnCVD 7 | * @source https://github.com/xcruxiex/themes 8 | * @website https://betterdiscord.app/theme/Nocturnal 9 | */ 10 | @import url("https://xcruxiex.github.io/themes/themes-cores/nocturnal.css"); 11 | /* 12 | 13 | 14 | NNNNNNNN NNNNNNNN tttt lllllll 15 | N:::::::N N::::::N ttt:::t l:::::l 16 | N::::::::N N::::::N t:::::t l:::::l 17 | N:::::::::N N::::::N t:::::t l:::::l 18 | N::::::::::N N::::::N ooooooooooo ccccccccccccccccttttttt:::::ttttttt uuuuuu uuuuuu rrrrr rrrrrrrrr nnnn nnnnnnnn aaaaaaaaaaaaa l::::l 19 | N:::::::::::N N::::::N oo:::::::::::oo cc:::::::::::::::ct:::::::::::::::::t u::::u u::::u r::::rrr:::::::::r n:::nn::::::::nn a::::::::::::a l::::l 20 | N:::::::N::::N N::::::No:::::::::::::::o c:::::::::::::::::ct:::::::::::::::::t u::::u u::::u r:::::::::::::::::r n::::::::::::::nn aaaaaaaaa:::::a l::::l 21 | N::::::N N::::N N::::::No:::::ooooo:::::oc:::::::cccccc:::::ctttttt:::::::tttttt u::::u u::::u rr::::::rrrrr::::::rnn:::::::::::::::n a::::a l::::l 22 | N::::::N N::::N:::::::No::::o o::::oc::::::c ccccccc t:::::t u::::u u::::u r:::::r r:::::r n:::::nnnn:::::n aaaaaaa:::::a l::::l 23 | N::::::N N:::::::::::No::::o o::::oc:::::c t:::::t u::::u u::::u r:::::r rrrrrrr n::::n n::::n aa::::::::::::a l::::l 24 | N::::::N N::::::::::No::::o o::::oc:::::c t:::::t u::::u u::::u r:::::r n::::n n::::n a::::aaaa::::::a l::::l 25 | N::::::N N:::::::::No::::o o::::oc::::::c ccccccc t:::::t ttttttu:::::uuuu:::::u r:::::r n::::n n::::na::::a a:::::a l::::l 26 | N::::::N N::::::::No:::::ooooo:::::oc:::::::cccccc:::::c t::::::tttt:::::tu:::::::::::::::uur:::::r n::::n n::::na::::a a:::::a l::::::l 27 | N::::::N N:::::::No:::::::::::::::o c:::::::::::::::::c tt::::::::::::::t u:::::::::::::::ur:::::r n::::n n::::na:::::aaaa::::::a l::::::l 28 | N::::::N N::::::N oo:::::::::::oo cc:::::::::::::::c tt:::::::::::tt uu::::::::uu:::ur:::::r n::::n n::::n a::::::::::aa:::al::::::l 29 | NNNNNNNN NNNNNNN ooooooooooo cccccccccccccccc ttttttttttt uuuuuuuu uuuurrrrrrr nnnnnn nnnnnn aaaaaaaaaa aaaallllllll 30 | 31 | 32 | */ 33 | @import url("https://xcruxiex.github.io/themes/core/badges.css"); 34 | @import url("https://xcruxiex.github.io/themes/core/custom-font.css"); 35 | @import url("https://discordstyles.github.io/RadialStatus/dist/RadialStatus.css"); /* Radial Status */ 36 | @import url("https://xcruxiex.github.io/themes/core/settings-icons.css"); 37 | :root { 38 | --backgroundColor01: #1e2731; 39 | --backgroundColor02: #12171d; 40 | --mainColor: #2275c9; 41 | --gradientColor01: #00f260; 42 | --gradientColor02: #0575e6; 43 | 44 | /* Better Hljs */ 45 | --backgroundCode: #1e2731; 46 | --backgroundName: rgba(0, 0, 0, 0.2); 47 | 48 | /* Radial Status */ 49 | --rs-small-spacing: 2px; 50 | --rs-large-spacing: 3px; 51 | --rs-width: 2px; 52 | --rs-avatar-shape: 50%; 53 | --rs-online-color: #43b581; 54 | --rs-idle-color: #faa61a; 55 | --rs-dnd-color: #f04747; 56 | --rs-offline-color: #636b75; 57 | --rs-streaming-color: #643da7; 58 | --rs-invisible-color: #747f8d; 59 | --rs-phone-visible: block; 60 | --rs-phone-color: var(--rs-online-color); 61 | 62 | /* Unread Animation : 63 | none -> static point. 64 | pulse -> pulsating point 65 | */ 66 | --unread-animation: pulse; 67 | 68 | --customFont: "gg sans", sans-serif; 69 | } 70 | --------------------------------------------------------------------------------