https://github.com/lylythii/discordcss
Custom CSS stuff for Discord.
https://github.com/lylythii/discordcss
css custom-css discord discord-css
Last synced: about 1 year ago
JSON representation
Custom CSS stuff for Discord.
- Host: GitHub
- URL: https://github.com/lylythii/discordcss
- Owner: Lylythii
- Created: 2022-12-10T23:25:41.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-16T19:28:59.000Z (almost 3 years ago)
- Last Synced: 2025-01-21T23:26:56.586Z (over 1 year ago)
- Topics: css, custom-css, discord, discord-css
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Disable Snowsgiving Button
- (bugged) hides links in chat...
```
/* Disable Snowsgiving Button */
.anchorUnderlineOnHover-2qPutX{display:none}
```
### Disable Ping Icons
```
/* Disable Ping Icons */
.lowerBadge-3WTshO{display:none}
```
### Remove Channel Icons
```
/* Remove Channel Icons */
.icon-2W8DHg {display: none}
```
### Hide Friends Activity on Home
```
/* Hide Friends Activity on Home */
*[class^='nowPlayingColumn']{
display: none;
}
```
### Transparent Call Background
```
/* Transparent Call Background */
.wrapper-1gVUIN, .minimum-fXpVNc, .callContainer-HtHELf {
background: none!important;
}
```
### Change Discord Font
```
/* Change Font */
::placeholder, body, button, input, select, textarea {
font-family: "gabriola";
text-rendering: optimizeLegibility;
}
```
### Remove Offline Users
```
/* Remove Offline Users */
.offline-22aM7E{display:none}
```
### Remove Offline User gray-out
```
/* Remove Offline User gray-out */ /* Default opacity; .3 */
.offline-22aM7E {
opacity: 1;
}
```
### Inset Messages
```
/* Inset Messages */
.message-2CShn3 {
border: 1.5px inset #202225;
}
```
### Remove "Now Playing" in Friends Tab
```
.nowPlayingColumn-1eCBCN{display:none};
```
### Edit Users/Servers
##### (Should work with any image url.)
- Replace Profile Picture
```
[src^="https://cdn.discordapp.com/avatars/USER_ID/"] {
content: url(URL_TO_IMAGE);
}
```
- Replace Server Icon
```
[src^="https://cdn.discordapp.com/icons/SERVER_ID/"] {
content: url(URL_TO_IMAGE);
}
```
- Replace Emoji
```
[src^="https://cdn.discordapp.com/emojis/EMOJI_ID/"] {
content: url(URL_TO_IMAGE);
}
```