Advertisement
Jmeel14

Discord Custom Theme

Dec 9th, 2016
450
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 8.06 KB | None | 0 0
  1. .connecting,
  2. section.flex-vertical.flex-spacer,
  3. .theme-dark .guilds-wrapper,
  4. .theme-dark .channels-wrap, .theme-dark .guild-channels-wrapper,
  5. .theme-dark .guild-channels,
  6. .theme-dark .scroller.messages,
  7. .theme-dark .messages-wrapper,
  8. .theme-dark .messages message-text,
  9. .theme-dark .chat,
  10. .theme-dark .chat>.content,
  11. .theme-dark .channel-members,
  12. .theme-dark .popout, theme-dark .pop-out .user-popout {
  13.     background:transparent;
  14. }
  15.  
  16. /* -------------------------------------------------------------------------- */
  17.  
  18. .app, .connecting {
  19.     background-image:url(https://i.imgur.com/mVJGTqe.jpg); /* CHANGE FOR YOUR OWN BACKGROUND */
  20. }
  21. .connecting {
  22.     background:radial-gradient(rgba(150,195,255,0), rgba(150,195,255,0.3) 99%)
  23. }
  24.  
  25. /* -------------------------------------------------------------------------- */
  26.  
  27. .theme-dark .channel-text {
  28.     background:linear-gradient(to right,
  29.         rgba(125,160,200,0),
  30.         rgba(125,160,200,0.2)8%,
  31.         rgba(125,160,200,0.25)9%,
  32.         rgba(125,160,200,0)
  33.     );
  34.     margin:2px 0;
  35. }
  36. .theme-dark .channel-text:hover {
  37.      background:linear-gradient(to right,
  38.         rgba(125,160,200,0),
  39.         rgba(125,160,200,0.3)8%,
  40.         rgba(125,160,200,0.5)9%,
  41.         rgba(125,160,200,0)
  42.     );
  43. }
  44. .theme-dark .channel-text.unread {
  45.     background:linear-gradient(to right,
  46.         rgba(135,180,225,0),
  47.         rgba(135,180,225,0.2)8%,
  48.         rgba(135,180,225,0.4)9%,
  49.         rgba(135,180,225,0)
  50.     );
  51. }
  52. .theme-dark .channel-text.unread:hover {
  53.     background:linear-gradient(to right,
  54.         rgba(135,180,225,0),
  55.         rgba(135,180,225,0.45)8%,
  56.         rgba(135,180,225,0.7)9%,
  57.         rgba(135,180,225,0)
  58.     );
  59. }
  60. .theme-dark .channel-text.selected {
  61.     background:linear-gradient(to right,
  62.         rgba(155,195,245,0),
  63.         rgba(155,195,245,0.4)8%,
  64.         rgba(175,210,250,0.6)9%,
  65.         rgba(155,195,245,0.3)
  66.     );
  67. }
  68. .theme-dark .channel-text.selected:hover {
  69.     background:linear-gradient(to right,
  70.         rgba(155,195,245,0),
  71.         rgba(155,195,245,0.5)8%,
  72.         rgba(175,210,250,0.7)9%,
  73.         rgba(155,195,245,0.3)
  74.     );
  75. }
  76. .theme-dark .channel-text.channel-muted {
  77.     background:linear-gradient(to right,
  78.         rgba(125,160,200,0),
  79.         rgba(125,160,200,0.1)10%,
  80.         rgba(125,160,200,0)
  81.     );
  82. }
  83. .theme-dark .channel-text.channel-muted:hover {
  84.     background:linear-gradient(to right,
  85.         rgba(125,160,200,0),
  86.         rgba(125,160,200,0.1)10%,
  87.         rgba(125,160,200,0)
  88.     );
  89. }
  90.  
  91. /* -------------------------------------------------------------------------- */
  92.  
  93. .theme-dark .popout .user-popout {
  94.     box-shadow:0 0 15px rgba(0,0,0,0.4);
  95.     backdrop-filter:blur(15px) !important;
  96. }
  97. .theme-dark .popout .user-popout header{
  98.     background:radial-gradient(
  99.         rgba(180,200,255,0.3) 50%,
  100.         rgba(180,200,255,0.15) 50%
  101.     );
  102.     background-size:300% 300%; background-position:10% 20%;
  103.     text-shadow:0 0 10px rgba(255,255,255,0.8);
  104. }
  105. .theme-dark .popout .user-popout .body,
  106. .theme-dark .popout .user-popout .footer {
  107.     background:rgba(25,65,125,0.8);
  108. }
  109. .theme-dark .popout .user-popout .icon {
  110.     background-color:rgba(100,175,225,0.4);
  111.     background-blend-mode:color-dodge;
  112.     padding:3px 5px;border-radius:3px;
  113. }
  114. .theme-dark .popout .user-popout .body .label {
  115.     color:white;
  116. }
  117. .theme-dark .popout .user-popout .note textarea {
  118.     color:rgba(255,255,255,0.7);
  119. }
  120. .theme-dark .popout .user-popout .note textarea::-webkit-input-placeholder {
  121.     color:rgba(255,255,255,0.8);
  122. }
  123. .theme-dark .popout .user-popout .note textarea:focus {
  124.     background:rgba(200,225,255,0.3);
  125.     color:rgb(255,255,255);
  126. }
  127. .theme-dark .popout .user-popout .note textarea:focus::-webkit-input-placeholder {
  128.     color:rgb(235,235,235);
  129. }
  130.  
  131. .theme-dark .popout .user-popout .footer .quick-message-wrapper .quick-message {
  132.     background:rgba(5,35,85,0.8);
  133.     color:rgb(100,150,225);
  134.     border:solid 1px rgba(0,15,35,0.6);
  135. }
  136. .theme-dark .popout .user-popout .footer .quick-message-wrapper .quick-message::-webkit-input-placeholder {
  137.     color:rgb(75,130,200);
  138. }
  139. /* -------------------------------------------------------------------------- */
  140.  
  141. .theme-dark .messages-wrapper .scroller-wrap ::-webkit-scrollbar-track-piece {
  142.     background:transparent; border:none;
  143. }
  144. .theme-dark .messages-wrapper .scroller-wrap ::-webkit-scrollbar-thumb {
  145.     background:linear-gradient(
  146.         rgba(175,200,225,0.5),
  147.         rgba(175,200,225,0.1),
  148.         rgba(175,200,225,0.5)
  149.     );
  150.     border:none; border-radius:3px;
  151. }
  152.  
  153. /* -------------------------------------------------------------------------- */
  154. .theme-dark .message-group {
  155.     margin:5px 10px;
  156.     background:rgba(125,155,220,0.3);
  157.     border-top-left-radius:0.5vw;
  158.     border-bottom-left-radius:0.5vw;
  159. }
  160. .theme-dark .message-group.is-local-bot-message {
  161.     background:linear-gradient(to left,
  162.         rgba(115,165,245,0.6),
  163.         rgba(115,165,245,0.3)45%
  164.     );
  165.     border:none;
  166.     box-shadow:-10px 0 3px rgba(115,165,245,0.7);
  167. }
  168. .theme-dark .message-group .avatar-large {
  169.     margin:10px;
  170. }
  171. .theme-dark .message-group h2 .timestamp {
  172.     float:right; color:rgba(150,200,250,1);
  173.     cursor:default;
  174. }
  175. .theme-dark .message-group .comment .markup pre{
  176.     background:transparent; border:solid 1px rgba(255,255,255,0.3);
  177. }
  178. .theme-dark .message-group .comment .markup pre code,
  179. .theme-dark .message-group .comment .markup code.inline,
  180. .theme-dark .message-group .comment .embed-wrapper {
  181.     background:rgba(0,25,100,0.5);
  182. }
  183.  
  184. .theme-dark .chat form .channel-textarea {
  185.     background:rgba(150,185,245,0.4);
  186.     box-shadow:0 0 15px rgba(150,175,225,0.4);
  187. }
  188. .theme-dark .chat form .channel-textarea-inner {
  189.     border:none;
  190. }
  191. .theme-dark .chat form .channel-textarea textarea {
  192.     color:rgb(195,200,255);
  193. }
  194. .theme-dark .chat form .channel-textarea textarea::-webkit-input-placeholder {
  195.     color:rgba(195,200,255,0.4);
  196. }
  197. .theme-dark .chat form .typing {
  198.     background:linear-gradient(to right,
  199.         rgba(200,235,255,0),
  200.         rgba(200,235,255,0.3) 3%,
  201.         rgba(200,235,255,0)
  202.     );
  203.     text-align:center;
  204. }
  205.  
  206. /* -------------------------------------------------------------------------- */
  207.  
  208. .theme-dark .channel-members-wrap .member{
  209.     background:rgba(195,200,255,0.2);
  210.     border-radius:5px;
  211.     margin:3px 0; padding:10px 15px;
  212.     transition:background 0.3s;
  213. }
  214. .theme-dark .channel-members-wrap .member.member-status-online {
  215.     background:linear-gradient(to left,
  216.         rgba(125,255,245,0.6),
  217.         rgba(35,200,150,0.4),
  218.         rgba(35,200,150,0.1)20%
  219.     ), rgba(195,200,255,0.2);
  220. }
  221. .theme-dark .channel-members-wrap .member.member-status-dnd {
  222.     background:linear-gradient(to left,
  223.         rgba(255,125,125,0.6),
  224.         rgba(255,75,75,0.4),
  225.         rgba(255,75,75,0.1)20%
  226.     ), rgba(195,200,255,0.2);
  227. }
  228. .theme-dark .channel-members-wrap .member.member-status-idle {
  229.     background:linear-gradient(to left,
  230.         rgba(255,255,175,0.6),
  231.         rgba(255,235,100,0.4),
  232.         rgba(255,235,100,0.1)20%
  233.     ), rgba(195,200,255,0.2);
  234. }
  235. .theme-dark .channel-members-wrap .member.member-status-offline {
  236.     background:rgba(25,35,65,0.6);
  237. }
  238. .theme-dark .channel-members-wrap .member.member-status-offline:hover {
  239.     background:rgba(45,65,100,0.8);
  240. }
  241. .theme-dark .channel-members-wrap .member:hover {
  242.     background:rgba(195,200,255,0.4);
  243. }
  244. .theme-dark .channel-members-wrap .member.member-status-online:hover {
  245.     background:linear-gradient(to left,
  246.         rgba(125,255,245,0.6),
  247.         rgba(35,215,150,0.4),
  248.         rgba(35,215,150,0.15)20%
  249.     ), rgba(195,200,255,0.3);
  250. }
  251. .theme-dark .channel-members-wrap .member.member-status-dnd:hover {
  252.     background:linear-gradient(to left,
  253.         rgba(255,125,125,0.6),
  254.         rgba(255,95,95,0.4),
  255.         rgba(255,75,75,0.15)20%
  256.     ), rgba(195,200,255,0.3);
  257. }
  258. .theme-dark .channel-members-wrap .member.member-status-idle:hover {
  259.     background:linear-gradient(to left,
  260.         rgba(255,255,175,0.6),
  261.         rgba(255,245,100,0.4),
  262.         rgba(255,245,100,0.15)20%
  263.     ), rgba(195,200,255,0.3);
  264. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement