ChatGPT.module.css
3 years ago
ChatGPT.module.scss
3 years ago
Messages.module.css
3 years ago
Messages.module.scss
3 years ago
_codeDark.scss
3 years ago
_codeLight.scss
3 years ago
_common.scss
3 years ago
_copybutton.scss
3 years ago
_codeLight.scss
100 lines
| 1 | // main: Messages.module.scss |
| 2 | |
| 3 | .mwai-chat { |
| 4 | |
| 5 | pre code.hljs { |
| 6 | display: block; |
| 7 | overflow-x: auto; |
| 8 | padding: 1em; |
| 9 | } |
| 10 | |
| 11 | code.hljs { |
| 12 | padding: 3px 5px; |
| 13 | } |
| 14 | |
| 15 | .hljs { |
| 16 | color: #333; |
| 17 | background: #f0f0f0; |
| 18 | |
| 19 | &-subst { |
| 20 | color: #333; |
| 21 | } |
| 22 | |
| 23 | &-comment { |
| 24 | color: #888; |
| 25 | } |
| 26 | |
| 27 | &-attr, |
| 28 | &-doctag, |
| 29 | &-keyword, |
| 30 | &-meta .hljs-keyword, |
| 31 | &-section, |
| 32 | &-selector-tag { |
| 33 | color: #0077cc; |
| 34 | } |
| 35 | |
| 36 | &-attribute { |
| 37 | color: #aa3377; |
| 38 | } |
| 39 | |
| 40 | &-name, |
| 41 | &-number, |
| 42 | &-quote, |
| 43 | &-selector-id, |
| 44 | &-template-tag, |
| 45 | &-type { |
| 46 | color: #c18401; |
| 47 | } |
| 48 | |
| 49 | &-selector-class { |
| 50 | color: #0077cc; |
| 51 | } |
| 52 | |
| 53 | &-link, |
| 54 | &-regexp, |
| 55 | &-selector-attr, |
| 56 | &-string, |
| 57 | &-symbol, |
| 58 | &-template-variable, |
| 59 | &-variable { |
| 60 | color: #689700; |
| 61 | } |
| 62 | |
| 63 | &-meta, |
| 64 | &-selector-pseudo { |
| 65 | color: #0077cc; |
| 66 | } |
| 67 | |
| 68 | &-built_in, |
| 69 | &-literal, |
| 70 | &-title { |
| 71 | color: #c18401; |
| 72 | } |
| 73 | |
| 74 | &-bullet, |
| 75 | &-code { |
| 76 | color: #555; |
| 77 | } |
| 78 | |
| 79 | &-meta .hljs-string { |
| 80 | color: #689700; |
| 81 | } |
| 82 | |
| 83 | &-deletion { |
| 84 | color: #b71c1c; |
| 85 | } |
| 86 | |
| 87 | &-addition { |
| 88 | color: #1b5e20; |
| 89 | } |
| 90 | |
| 91 | &-emphasis { |
| 92 | font-style: italic; |
| 93 | } |
| 94 | |
| 95 | &-strong { |
| 96 | font-weight: 700; |
| 97 | } |
| 98 | } |
| 99 | } |
| 100 |