Advertisement
NightCat

Twitch Dark Mode Chat Improver (plays nice with BetterTTV)

May 9th, 2020
1,873
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.94 KB | None | 0 0
  1. /* Makes Twitch chat look a bit more like YT chat. Made for Dark Theme (found under the top right avatar menu) & should work well at 1080p & "Actual size", with chat in-line or popped out, moderator stuff turned on or not, & using BetterTTV or not. Also adds emote enlarging on hover & tones down certain elements so they're a bit less jarring. */
  2. /* Paste the below into any extension or other thing that can modify the CSS of a site. If you need one, I recommend StyleBot. */
  3.  
  4. .chat-line__message--emote:hover {
  5.     transform: scale(3);
  6. }
  7.  
  8. div.chat-input.tw-block.tw-pd-b-1.tw-pd-x-1 {
  9.     background-color: #211;
  10.     font-size: 15pt;
  11. }
  12.  
  13. div.chat-input__buttons-container.tw-flex.tw-justify-content-between.tw-mg-t-1 {
  14.     height: 30px;
  15. }
  16.  
  17. div.chat-list__list-container.tw-flex-grow-1.tw-full-height.tw-pd-b-1 {
  18.     background-color: #211;
  19.     font-size: 14pt;
  20.     line-height: 1;
  21. }
  22.  
  23. div.chat-settings__content.tw-border-bottom-left-radius-medium.tw-border-bottom-right-radius-medium.tw-c-background-base.tw-c-text-base.tw-pd-1 {
  24.     font-size: 12px;
  25.     line-height: 1;
  26. }
  27.  
  28. div.rooms-header.tw-align-items-center.tw-border-b.tw-c-background-base.tw-flex.tw-flex-shrink-0.tw-full-width.tw-justify-content-center.tw-pd-l-1.tw-pd-r-1 {
  29.     height: 22px;
  30. }
  31.  
  32. div.stream-chat-header.tw-align-items-center.tw-border-b.tw-c-background-base.tw-flex.tw-flex-shrink-0.tw-full-width.tw-justify-content-center.tw-pd-l-1.tw-pd-r-1 {
  33.     height: 40px;
  34. }
  35.  
  36. div.tw-border-t.tw-mg-t-1.tw-mg-x-05.tw-pd-b-1 {
  37.     display: none;
  38. }
  39.  
  40. div.tw-c-background-alt.tw-flex.tw-justify-content-center.tw-pd-1 {
  41.     height: 30px;
  42. }
  43.  
  44. div.video-chat__message-list-wrapper {
  45.     font-size: 120%;
  46. }
  47.  
  48. span.chat-line__message-body--highlighted {
  49.     line-height: 1.3;
  50. }
  51.  
  52. span.mention-fragment.mention-fragment--recipient {
  53.     padding: 0px;
  54. }
  55.  
  56. textarea.tw-block.tw-border-radius-medium.tw-font-size-6.tw-full-width.tw-textarea.tw-textarea--no-resize {
  57.     height: 55px;
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement