Skip to content

everviolet/discord

Repository files navigation

Logo
Evergarden for Discord

Previews

Winter
Fall
Spring
Summer

Usage

  1. Download your preferred flavour:
  1. Copy the downloaded file to your BetterDiscord themes folder.
  2. 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.
/* summer */
@import url("https://everviolet.github.io/discord/themes/evergarden-summer.theme.css");
/* spring */
@import url("https://everviolet.github.io/discord/themes/evergarden-spring.theme.css");
/* fall */
@import url("https://everviolet.github.io/discord/themes/evergarden-fall.theme.css");
/* winter */
@import url("https://everviolet.github.io/discord/themes/evergarden-winter.theme.css");

/* You can also append colors to customize the accent, e.g. */
/* winter (pink accent)*/
@import url("https://everviolet.github.io/discord/themes/evergarden-winter-pink.theme.css");
/* spring (orange accent) */
@import url("https://everviolet.github.io/discord/themes/evergarden-spring-orange.theme.css");
  1. Enable CSP Patching from Stylus Settings > Advanced.
  2. Click here to install.
  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 summer in light mode and winter in dark mode by adding an inline prefers-color-scheme media feature, (prefers-color-scheme: <light-or-dark>), after each @import statement (see "Importing CSS rules conditional on media queries" - MDN).

    @import url("https://everviolet.github.io/discord/themes/evergarden-winter.theme.css")
    (prefers-color-scheme: dark);
    @import url("https://everviolet.github.io/discord/themes/evergarden-summer.theme.css")
    (prefers-color-scheme: light);

Thanks to <3