Advertisement
Gur0v

midnight discord theme

Sep 1st, 2023
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. /**
  2. * @name midnight
  3. * @description A darkened discord theme.
  4. * @author refact0r
  5. * @version 1.5.0
  6. * @source https://github.com/refact0r/midnight-discord
  7. * @authorId 508863359777505290
  8. */
  9.  
  10. /* IMPORTANT: make sure to enable dark mode in discord settings for the theme to apply properly!! */
  11.  
  12. @import url('https://refact0r.github.io/midnight-discord/midnight.css');
  13.  
  14. /* change colors and variables here */
  15. :root {
  16. /* amount of spacing and padding */
  17. --spacing: 12px;
  18. /* radius of round corners */
  19. --roundness: 16px;
  20.  
  21. /* color of links */
  22. --accent-1: hsl(190, 70%, 60%);
  23. /* color of unread dividers and some indicators */
  24. --accent-2: hsl(190, 70%, 50%);
  25. /* color of accented buttons */
  26. --accent-3: hsl(190, 70%, 40%);
  27. /* color of accented buttons when hovered */
  28. --accent-4: hsl(190, 70%, 30%);
  29. /* color of accented buttons when clicked */
  30. --accent-5: hsl(190, 70%, 20%);
  31.  
  32. /* color of mentions and messages that mention you */
  33. --mention: hsla(190, 60%, 50%, 0.1);
  34. /* color of mentions and messages that mention you when hovered */
  35. --mention-hover: hsla(190, 60%, 50%, 0.05);
  36.  
  37. /* color of bright text on colored buttons */
  38. --text-1: hsl(220, 40%, 90%);
  39. /* color of headings and important text */
  40. --text-2: hsl(220, 30%, 70%);
  41. /* color of normal text */
  42. --text-3: hsl(220, 15%, 60%);
  43. /* color of icon buttons and channels */
  44. --text-4: hsl(220, 15%, 40%);
  45. /* color of muted channels/chats and timestamps */
  46. --text-5: hsl(220, 15%, 24%);
  47.  
  48. /* color of dark buttons when clicked */
  49. --bg-1: hsl(220, 15%, 20%);
  50. /* color of dark buttons */
  51. --bg-2: hsl(220, 15%, 16%);
  52. /* color of spacing around panels and secondary elements */
  53. --bg-3: hsl(220, 15%, 13%);
  54. /* main background color */
  55. --bg-4: hsl(220, 15%, 10%);
  56.  
  57. /* color of channels and icon buttons when hovered */
  58. --hover: hsla(230, 20%, 40%, 0.1);
  59. /* color of channels and icon buttons when clicked or selected */
  60. --active: hsla(220, 20%, 40%, 0.2);
  61. /* color of messages when hovered */
  62. --message-hover: hsla(220, 0%, 0%, 0.1);
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement