Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1. @import url(https://enhanceddiscord.com/theme.css);
  2.  
  3. /* theme settings */
  4. :root {
  5. /* background for the entire window. Almost everything is transparent to this image. */
  6. --bg: url(https://i.imgur.com/ybRUHPc.jpg);
  7. --bg-overlay: rgba(0, 0, 0, 0.8); /* overlay for the background. Generally, this should darken the picture to make text more readable. */
  8. --accent-color: #900; /* color of buttons, misc. text, etc. */
  9. --mention-color: #f00; /* color of mention text */
  10. --mention-bg: rgba(255, 0, 0, 0.15); /* mention background color */
  11. --mention-bgh: rgba(255, 0, 0, 0.4); /* mention backgroung while hovering over it */
  12. --link-color: #faa61a; /* color of all links */
  13. --link-color-hover: #fad61a; /* color of all links while hovering over them */
  14. --tag-color: #fff; /* text color of tags (bot tags and custom) */
  15. --tag-bg: rgba(255, 0, 0, 0.3); /* background of tags (bot tags and custom) */
  16. --popup-background: #222; /* background of modals, confirmation messages etc. */
  17. --popup-highlight: #333; /* color of headers and footers of "popouts" (linked to above) */
  18. --context-menu-bg: #333; /* color of context (right-click) menus. */
  19. --unread-color: #f00; /* color of unread/selected server indicators. */
  20. }
  21.  
  22. /* nitrofag badge */
  23. .profileBadgePremium-3kZ9Qj, .topSectionNormal-2-vo2m .profileBadgePremium-3kZ9Qj,
  24. .profileBadgePremium-3kZ9Qj, .topSectionPlaying-1J5E4n .profileBadgePremium-3kZ9Qj {
  25. background-image: url(https://discordapp.com/assets/9c252d28ca4980d65054a0258052983b.svg);
  26. }
  27.  
  28. /* unread indicators */
  29. .theme-dark .unread-2OHH1w:not(.selected-nT-gM3):before {
  30. background: transparent;
  31. opacity: 0.5;
  32. height: 50px;
  33. width: 50px;
  34. left: 0px;
  35. bottom: 0px;
  36. top: 0px;
  37. margin-top: 0;
  38. border-radius: 50%;
  39. border-top-right-radius: 5px;
  40. border-bottom-left-radius: 5px;
  41. /* box-shadow: 16px -16px 10px -14px #f00; */
  42. /* background: -webkit-radial-gradient(transparent 15px, #f00 25px, transparent 40px); */
  43. box-shadow: inset 0 0 12px 2px var(--unread-color);
  44. }
  45. .theme-dark .selected-nT-gM3:before {
  46. background: var(--unread-color);
  47. }
  48. .theme-dark .unread-2OHH1w:hover::before {
  49. border-radius: 15px;
  50. border-top-right-radius: 5px;
  51. border-bottom-left-radius: 5px;
  52. transition: border-radius 150ms;
  53. }
  54. button[aria-label="Open GIF picker"] {
  55. display: none;
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement