This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Change Discord accent color */ | |
:root { | |
/* Change these two colors to the same value */ | |
/* take a hsl color like 177°, 94%, 51% */ | |
/* it becomes 177 calc(var(--saturation-factor, 1)*94%) 94% */ | |
/* then put that color in both the variables below! */ | |
--brand-500-hsl: 354 calc(var(--saturation-factor, 1)*70%) 74%; | |
--brand-360-hsl: 354 calc(var(--saturation-factor, 1)*70%) 74%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Glass Menu Items */ | |
/* | |
This CSS replaces the backgrounds of most alerts and popups with | |
a nice acrylic effect. You can use this in your client by simply | |
importing the css in your modded discord client. Just import this | |
file with a `@import` line in your theme. | |
*/ | |
/* This has been relocated! Go to https://github.com/llsc12/discord-acrylic/ */ |