https://github.com/catppuccin/discord
๐ฎ Soothing pastel theme for Discord
https://github.com/catppuccin/discord
betterdiscord-theme catppuccin discord discord-theme hacktoberfest powercord-theme stylus vencord-theme
Last synced: 1 day ago
JSON representation
๐ฎ Soothing pastel theme for Discord
- Host: GitHub
- URL: https://github.com/catppuccin/discord
- Owner: catppuccin
- License: mit
- Created: 2022-01-24T17:11:38.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-22T03:06:41.000Z (4 days ago)
- Last Synced: 2025-04-24T05:17:25.628Z (1 day ago)
- Topics: betterdiscord-theme, catppuccin, discord, discord-theme, hacktoberfest, powercord-theme, stylus, vencord-theme
- Language: SCSS
- Homepage:
- Size: 15.4 MB
- Stars: 974
- Watchers: 13
- Forks: 177
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![]()
Catppuccin for Discord
![]()

## Previews
๐ป Latte
๐ชด Frappรฉ
๐บ Macchiato
๐ฟ Mocha
## Usage
### [BetterDiscord](https://betterdiscord.app)
1. Download your preferred flavour:
- ๐ป [Latte](./themes/latte.theme.css?raw=1)
- ๐ชด [Frappe](./themes/frappe.theme.css?raw=1)
- ๐บ [Macchiato](./themes/macchiato.theme.css?raw=1)
- ๐ฟ [Mocha](./themes/mocha.theme.css?raw=1)2. Copy the downloaded file to your BetterDiscord themes folder.
3. Enable the theme in BetterDiscord settings.### Clients/Mods with custom CSS support
1. Simply add your preferred flavour into your discord clients CustomCSS file/editor.
```css
/* latte */
@import url("https://catppuccin.github.io/discord/dist/catppuccin-latte.theme.css");
/* frappe */
@import url("https://catppuccin.github.io/discord/dist/catppuccin-frappe.theme.css");
/* macchiato */
@import url("https://catppuccin.github.io/discord/dist/catppuccin-macchiato.theme.css");
/* mocha */
@import url("https://catppuccin.github.io/discord/dist/catppuccin-mocha.theme.css");/* You can also append Catppuccin colors to customize the accent, e.g. */
/* mocha (pink accent)*/
@import url("https://catppuccin.github.io/discord/dist/catppuccin-mocha-pink.theme.css");
/* frappe (maroon accent) */
@import url("https://catppuccin.github.io/discord/dist/catppuccin-frappe-maroon.theme.css");
```### [Stylus](https://github.com/openstyles/stylus)
1. Enable CSP Patching from Stylus Settings > Advanced.
2. [Click here to install](https://github.com/catppuccin/discord/raw/main/discord.user.css).
3. Choose your preferred flavour and accent color from the Stylus preference dropdown.## ๐ FAQ
- Q: **_"Can this get my account banned?"_**
- A: Using third party clients and injecting custom css is against the ToS. While nobody has ever been banned for simply using discord client mods, We are not responsible for anything that might happen to your account by using third party clients. Use at your own discretion!- Q: **_"Can I automatically switch flavors between light and dark mode?"_**
- A: The following snippet showcases a configuration that switches between latte in light mode and mocha in dark mode by adding an inline [`prefers-color-scheme` media feature](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme), `(prefers-color-scheme: )`, after each `@import` statement (see ["Importing CSS rules conditional on media queries" - MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/@import#importing_css_rules_conditional_on_media_queries)).```css
@import url("https://catppuccin.github.io/discord/dist/catppuccin-mocha.theme.css")
(prefers-color-scheme: dark);
@import url("https://catppuccin.github.io/discord/dist/catppuccin-latte.theme.css")
(prefers-color-scheme: light);
```- Q: **_"Can I disable Rainbow Threads"_**
- A: Yes, by placing the following in your QuickCSS threads will be the same colour as typical channels. *note: please respect the `space` between the colon and semi-colon*
```css
:root {
--ctp-rainbow-thread-disabled: ;
}
```## ๐ Thanks to
- [GlowingUmbreon](https://github.com/glowingumbreon)
- [Isabelinc](https://github.com/Isabelincorp)
- [Ren](https://github.com/watatomo)
- [winston](https://github.com/nekowinston)
- [rubyowo](https://github.com/rubyowo)
- [Aven](https://github.com/ToxicAven)ย
Copyright ยฉ 2021-present Catppuccin Org