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