25 lines
859 B
CSS
25 lines
859 B
CSS
/* ==UserStyle==
|
|
@name Discord Catppuccin
|
|
@namespace github.com/catppuccin/discord
|
|
@version 0.2.0
|
|
@description Soothing pastel theme for Discord
|
|
@author Catppuccin
|
|
@preprocessor stylus
|
|
@var select theme "Theme" ["Latte", "Frappe", "Macchiato", "Mocha*"]
|
|
==/UserStyle== */
|
|
|
|
@-moz-document domain("discord.com") {
|
|
if (theme=="Latte") {
|
|
@import url("https://catppuccin.github.io/discord/dist/catppuccin-latte.theme.css");
|
|
}
|
|
if (theme=="Frappe") {
|
|
@import url("https://catppuccin.github.io/discord/dist/catppuccin-frappe.theme.css");
|
|
}
|
|
if (theme=="Macchiato") {
|
|
@import url("https://catppuccin.github.io/discord/dist/catppuccin-macchiato.theme.css");
|
|
}
|
|
if (theme=="Mocha") {
|
|
@import url("https://catppuccin.github.io/discord/dist/catppuccin-mocha.theme.css");
|
|
}
|
|
}
|