Advertisement
Guest User

Black and White Theme

a guest
Aug 26th, 2024
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.20 KB | None | 0 0
  1. :root {
  2.     /* MAIN COLOR VARIABLES */
  3.     --user-text-color: #FFF;
  4.     --user-quote-color: #D65A7E;
  5.     --user-em-color: #D65A7E;
  6.     --bot-text-color: #FFF;
  7.     --bot-quote-color: #D65A7E;
  8.     --bot-em-color: #D65A7E;
  9.  
  10.     /* FONT STYLE VARIABLES */
  11.     --message-font: 'Outfit';
  12.     --main-text-style: normal;
  13.     --main-text-weight: 200;
  14.     --main-text-size: 1.05rem;
  15.     --italic-weight: 400;
  16.     --italic-style: italic;
  17.     --quote-weight: normal;
  18.     --quote-style: normal;
  19.  
  20.     /* CODEBLOCK VARIABLES */
  21.     --code-font: 'Cartograph CF';
  22.     --code-background: #222222;
  23.     --code-text: #D7E5CA;
  24.     --code-glow: transparent;
  25.     --glow-color: #EEEEEE44;
  26. }
  27.  
  28. #chat
  29. {
  30.     background-color: #000;
  31.     padding: 10px;
  32. }
  33.  
  34. body, #chat
  35. {
  36.     background-color: #000;
  37.     opacity: 1;
  38. }
  39.  
  40. .mes
  41. {
  42.     padding: 0 !important;
  43.     margin-bottom: 5px !important;
  44.     color: #fff !important;
  45.     border-radius: 0px!important;
  46.     border: #fff 1px solid !important;
  47. }
  48.  
  49. .mes br,
  50. .mes p {
  51.     margin-bottom: 1rem;
  52. }
  53.  
  54. .mes_block
  55. {
  56.     padding: 0px;
  57.     margin-left: 0;
  58.     border-radius: 10px;
  59. }
  60.  
  61. .mes .mesAvatarWrapper {
  62.     min-height: 100%;
  63.     border-right: 1px #fff solid;
  64.     padding: 4px;
  65.     width: 8rem;
  66.     max-width: 100px;
  67. }
  68.  
  69. .mes .mesAvatarWrapper .avatar {
  70.     width: 98% !important;
  71.     height: auto !important;
  72.     align-content: center;
  73. }
  74.  
  75. .mes .mesAvatarWrapper img {
  76.     width: 100% !important;
  77.     height: auto !important;
  78.     aspect-ratio: 4/6 auto;
  79.     max-height: 144px;
  80.     max-width: 96px;
  81.     border-radius: 0px !important;
  82. }
  83.  
  84. .mes_button
  85. {
  86.     color: #fff;
  87.     opacity: 1;
  88. }
  89.  
  90. .mes_text
  91. {
  92.     padding: 1rem
  93. }
  94.  
  95. .mes .ch_name
  96. {
  97.     padding: 5px 10px;
  98.     border-bottom: 1px #fff solid;
  99.     color: var(--user-text-color);
  100.     min-width: 100%;
  101. }
  102.  
  103. .mes[is_user="true"] {
  104.     color: var(--user-text-color);
  105. }
  106.  
  107. .mes[is_user="true"] p q {
  108.     color: var(--user-quote-color);
  109. }
  110.  
  111. .mes[is_user="true"] p em {
  112.     color: var(--user-em-color);
  113.     font-weight: bold;
  114. }
  115.  
  116. .mes[is_user="false"] {
  117.     color: var(--bot-text-color);
  118. }
  119.  
  120. .mes[is_user="false"] p q {
  121.     color: var(--bot-quote-color);
  122. }
  123.  
  124. .mes[is_user="false"] p em {
  125.     color: var(--bot-em-color);
  126.     font-weight: bold;
  127. }
  128.  
  129. .mes_text p {
  130.     /* Change base message visuals here */
  131.     font-family: var(--message-font);
  132.     font-size: var(--main-text-size);
  133.     font-style: var(--main-text-style);
  134.     font-weight: var(--main-text-weight);
  135. }
  136.  
  137. .mes_text p em {
  138.     /* Change italics settings (*text formatted like this*) here */
  139.     font-weight: var(--italic-weight);
  140.     font-style: var(--italic-style) !important;
  141.     /* text-shadow: 0px 0px 1px var(--glow-color), 0px 0px 3px var(--glow-color), 0px 0px 3px var(--glow-color) !important; */
  142. }
  143.  
  144. .mes_text p q {
  145.     /* Change quoted text settings ("text formatted like this") here */
  146.     font-weight: var(--quote-weight);
  147.     font-style: var(--quote-style) !important;
  148. }
  149.  
  150. .mes_text code {
  151.     /* Change code settings (`text formatted like this`) here */
  152.     background-color: var(--code-background);
  153.     color: var(--code-text);
  154.     text-shadow: 0px 0px 2px var(--code-glow) !important;
  155.     font-family: var(--code-font);
  156.     line-height: 1.1rem;
  157. }
  158.  
  159. .swipe_left, .swipe_left,.mfc--root span {
  160.     opacity: 1;
  161.     color: #EEEEEEBB;
  162. }
  163.  
  164. .swipe_left::before, .swipe_right::before, .mfc--root span
  165. {
  166.     opacity: 1;
  167.     text-shadow: 2px 2px 3px black !important;
  168. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement