Skip to content

AushevAhmad/awesome-css

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

83 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Awesome CSS Snippets for Discord

Welcome to Awesome CSS Snippets for Discord! This repository is a curated collection of CSS snippets designed to enhance your Discord experience. Whether you want to customize the appearance, improve functionality, or streamline your usage, these snippets offer a variety of solutions.

Jump down to Installing Modules for help getting started.

PRs Welcome License Stars

Modules Overview

Below is a list of modules available in this repository:

🍸 Bartender

Hide Discord's toolbar icons until you need them.

@import url("https://aushevahmad.github.io/awesome-css/modules/bartender.css");
:root {
    --bartender-width: 4ch;  /* Width for displayed icon. Adjust depending on your needs [Default: 4ch] */
}

Bartender

If you fancy an animated version, which slides in from the left, you can use this version:

@import url("https://aushevahmad.github.io/awesome-css/modules/bartenderAnimated.css");

:root {
    --bartender-width: 34px; /* Adjust this to 34-45px based on themes [Default: 34px] */
    --animation-size: 21%; /* Adjust the width to show the whole section if necessary [default: 21%] */
}

note that the toolbar's width will not be consistent with all window sizes.

🙂 Custom Emoji

Replace the emoji icon in text inputs with one of your choice.

@import url("https://aushevahmad.github.io/awesome-css/modules/custom-emoji-bar.css");

:root {
    --image-link: url("https://cdn.discordapp.com/emojis/1196313509525471355.webp");
}

Custom Emoji

⌨️ Custom Prompt

Replace the text prompt in the chat bar.

@import url("https://aushevahmad.github.io/awesome-css/modules/custom-bar-prompt.css");

:root {
    --prompt-text: "be silly :3";
}

Custom Prompt

📶 MemberCount Tweak

Minor adjustments to the membercount view. This module has no effect unless the Vencord MemberCount plugin is installed.

@import url("https://aushevahmad.github.io/awesome-css/modules/vc-membercount.css");

MemberCount Tweak

💬 Channel Tweaks

A few changes to the channel list, to increase density.

@import url("https://aushevahmad.github.io/awesome-css/modules/channeltweaks.css");

Channel Tweak

🔍 Fancy Search

Keep the search bar out of the way when it's not in use

@import url("https://aushevahmad.github.io/awesome-css/modules/fancySearch.css");

Fancy Search

🧹 Declutter

Remove useless buttons and give Discord a cleaner look.

@import url("https://aushevahmad.github.io/awesome-css/modules/declutter.css");

Declutter

Modules from Other Developers

In addition to our modules, here are some contributions from other developers:

🛑 HideNitroUpsells by tom

Hide (or limit, where hiding isn't possible) annoying Nitro upsells.

@import url("https://raw.githubusercontent.com/tom22k/discord-css/main/Themes/HideNitroUpsellV2.css");

:root {
    /* do you want to see your quests/billing/nitro settings? */
    /* yes, I want to see it -> --billing: block !important; */
    /* no, hide it -> --billing: none; */
    --billing: none;
    /* do you want to see server boosting/server shop upsell? */
    /* yes, I want to see it -> --boosting: block !important; */
    /* no, hide it -> --boosting: none; */
    --boosting: none;
}

Adblock

💡 Connection Glow on Hover by Vortex-Chaos

Make the connection buttons glow when hovering in Discord profiles.

@import url("https://raw.githubusercontent.com/Vortex-Chaos/Discord-Connections-Glow/main/Code.css");

Connection Glow

🎵 Better Spotify Player by Panniku

Make the Spotify player look like it's from Samsung OneUI.

@import url("https://raw.githubusercontent.com/Panniku/vc-snippets/main/BetterSpotifyPlayer.css");

Spotify Player Spotify Player Hovered

🖼️ Acrylic Pop-outs by Skyli

Give pop-outs such as user profiles a background blur effect.

@import url("https://aushevahmad.github.io/awesome-css/modules/acrylicpopup.css");

Acrylic Pop-outs

🔲 Alt Text Improvements by Saltssaumure

Display a 'show alt` button for any image that has alt text.

@import url("https://minidiscordthemes.github.io/Snippets/AltTextImprovements/main.css");

AltTextImprovements

🔎 QuickSwitch V2 by Dablulite

A redesign to Discord's quickswitcher, making it look more like spotlight and similar search bars.

QuickSwitch

@import url("https://dablulite.github.io/css-snippets/QuickSwitchV2/import.css");

💠 Account Details Grid by Dablulite

A refresh to the now archived "account details columns" snippet.

@import url("https://dablulite.github.io/css-snippets/AccountDetailsGrid/import.css");

Accountgrid

💬 Tabs V2 Home Icon by Dablulite

Replace the Discord Home icon with a modern Chats icon.

@import url("https://dablulite.github.io/css-snippets/TabsV2HomeIcon/import.css");

Tabsv2icon

🎨 Hotfix for the Nitro Themes by Dablulite

Hotfix that styles the previously unstyled areas when using Nitro Themes.

@import url("https://dablulite.github.io/css-snippets/NitroThemesFix/import.css");

ThemeHotfix

📖 Forum Improvements by Saltssaumure

Provides a series of fixes and QoL features to bring forums closer to full-assed.

@import url("https://minidiscordthemes.github.io/Snippets/ForumImprovements/main.css");

ForumImprovements

⚙️ Settings icons by mwittrien

Adds icons to settings.

@import url("https://mwittrien.github.io/BetterDiscordAddons/Themes/_res/SettingsIcons.css");

🧵 Hidden Threads by LuLu

Make Threads hidden by default and slide down on hover.

@import url("https://aushevahmad.github.io/awesome-css/modules/hiddenthreads.css");

HiddenThreads

🤖 Compress bot messages by Andrew6rant

Compress Github's bot messages.

@import url("https://aushevahmad.github.io/awesome-css/modules/compressbotmsgs.css");

BotMessages

Installing Modules

To install these modules:

  1. Open the CSS file for your modded Discord client.

Tip

We recommend using Vencord however you can also use BetterDiscord

  • Vencord: In the Vencord settings tab, ensure Enable Custom CSS is turned on, then select 'Open QuickCSS File'.

  • BetterDiscord: Open the CustomCSS tab in settings.

  1. Paste the CSS modules you want into the CSS file.

Important

Make sure to put all @import URL links ON TOP of the CSS configuration.

  1. That's it! If you experience issues, try reloading your client.

If you prefer not to receive updates, see Customizing Modules.

Vencord Settings

QuickCSS

Customizing Modules

If you would like to to customize your modules:

  1. Open the link found in the module's @import URL.

  2. Copy all of the CSS and paste it into your custom CSS file.

  3. You can now customize any of the module's contents.

Warning

Doing this means the modules will not receive updates from this repository.

Issues / Ideas

If you encounter any issues or have ideas for improvement, please report them in GitHub's Issues tab.

Credits

This project is maintained by Ahmad, FormalSnake, geb, and Kami.

Third-party Devs

Special thanks to the following third-party developers for their contributions:

About

Collection of awesome CSS snippets for Discord

Resources

License

Stars

Watchers

Forks

Contributors 4

  •  
  •  
  •  
  •  

Languages