ChatGPT.module.css
3 years ago
ChatGPT.module.scss
3 years ago
Messages.module.css
3 years ago
Messages.module.scss
3 years ago
_codeLight.css
3 years ago
_codeLight.scss
3 years ago
_common.scss
3 years ago
_copybutton.scss
3 years ago
_codeLight.css
75 lines
| 1 | .mwai-chat pre code.hljs { |
| 2 | display: block; |
| 3 | overflow-x: auto; |
| 4 | padding: 1em; |
| 5 | } |
| 6 | |
| 7 | .mwai-chat code.hljs { |
| 8 | padding: 3px 5px; |
| 9 | } |
| 10 | |
| 11 | .mwai-chat .hljs { |
| 12 | color: #fff; |
| 13 | background: #1c1b1b; |
| 14 | } |
| 15 | |
| 16 | .mwai-chat .hljs-subst { |
| 17 | color: #fff; |
| 18 | } |
| 19 | |
| 20 | .mwai-chat .hljs-comment { |
| 21 | color: #999; |
| 22 | } |
| 23 | |
| 24 | .mwai-chat .hljs-attr, .mwai-chat .hljs-doctag, .mwai-chat .hljs-keyword, .mwai-chat .hljs-meta .hljs-keyword, .mwai-chat .hljs-section, .mwai-chat .hljs-selector-tag { |
| 25 | color: #88aece; |
| 26 | } |
| 27 | |
| 28 | .mwai-chat .hljs-attribute { |
| 29 | color: #c59bc1; |
| 30 | } |
| 31 | |
| 32 | .mwai-chat .hljs-name, .mwai-chat .hljs-number, .mwai-chat .hljs-quote, .mwai-chat .hljs-selector-id, .mwai-chat .hljs-template-tag, .mwai-chat .hljs-type { |
| 33 | color: #f08d49; |
| 34 | } |
| 35 | |
| 36 | .mwai-chat .hljs-selector-class { |
| 37 | color: #88aece; |
| 38 | } |
| 39 | |
| 40 | .mwai-chat .hljs-link, .mwai-chat .hljs-regexp, .mwai-chat .hljs-selector-attr, .mwai-chat .hljs-string, .mwai-chat .hljs-symbol, .mwai-chat .hljs-template-variable, .mwai-chat .hljs-variable { |
| 41 | color: #b5bd68; |
| 42 | } |
| 43 | |
| 44 | .mwai-chat .hljs-meta, .mwai-chat .hljs-selector-pseudo { |
| 45 | color: #88aece; |
| 46 | } |
| 47 | |
| 48 | .mwai-chat .hljs-built_in, .mwai-chat .hljs-literal, .mwai-chat .hljs-title { |
| 49 | color: #f08d49; |
| 50 | } |
| 51 | |
| 52 | .mwai-chat .hljs-bullet, .mwai-chat .hljs-code { |
| 53 | color: #ccc; |
| 54 | } |
| 55 | |
| 56 | .mwai-chat .hljs-meta .hljs-string { |
| 57 | color: #b5bd68; |
| 58 | } |
| 59 | |
| 60 | .mwai-chat .hljs-deletion { |
| 61 | color: #de7176; |
| 62 | } |
| 63 | |
| 64 | .mwai-chat .hljs-addition { |
| 65 | color: #76c490; |
| 66 | } |
| 67 | |
| 68 | .mwai-chat .hljs-emphasis { |
| 69 | font-style: italic; |
| 70 | } |
| 71 | |
| 72 | .mwai-chat .hljs-strong { |
| 73 | font-weight: 700; |
| 74 | } |
| 75 |