srcery.css
1 pre code.hljs { 2 display: block; 3 overflow-x: auto; 4 padding: 1em 5 } 6 code.hljs { 7 padding: 3px 5px 8 } 9 /* 10 Theme: Srcery 11 Description: Srcery dark color scheme for highlight.js 12 Author: Chen Bin <chen.bin@gmail.com> 13 Maintainer: @redguardtoo 14 Website: https://srcery-colors.github.io/ 15 Date: 2021-04-13 16 */ 17 .hljs { 18 background: #1C1B19; 19 /* Black */ 20 color: #FCE8C3/* Bright White */ 21 22 } 23 /* Bright White */ 24 .hljs-subst, 25 .hljs-quote, 26 .hljs-literal { 27 color: #FCE8C3 28 } 29 /* Bright Blue */ 30 .hljs-type, 31 .hljs-symbol { 32 color: #68A8E4 33 } 34 /* Red */ 35 .hljs-keyword, 36 .hljs-deletion { 37 color: #EF2F27 38 } 39 /* Yellow */ 40 .hljs-name, 41 .hljs-function, 42 .hljs-attribute, 43 .hljs-selector-attr, 44 .hljs-selector-id, 45 .hljs-selector-class, 46 .hljs-selector-pseudo, 47 .hljs-section, 48 .hljs-title { 49 color: #FBB829 50 } 51 /* Cyan */ 52 .hljs-code, 53 .hljs-variable, 54 .hljs-property, 55 .hljs-template-variable, 56 .hljs-class { 57 color: #0AAEB3 58 } 59 /* Bright Green */ 60 .hljs-string, 61 .hljs-regexp, 62 .hljs-bullet, 63 .hljs-addition { 64 color: #98BC37 65 } 66 /* Bright Magenta */ 67 .hljs-built_in, 68 .hljs-params { 69 color: #FF5C8F 70 } 71 /* Blue */ 72 .hljs-template-tag, 73 .hljs-selector-tag { 74 color: #2C78BF 75 } 76 /* Bright Black */ 77 .hljs-link, 78 .hljs-number, 79 .hljs-comment, 80 .hljs-meta { 81 color: #918175 82 } 83 .hljs-emphasis { 84 font-style: italic 85 } 86 .hljs-strong { 87 font-weight: bold 88 } 89 /* @see https://github.com/srcery-colors/srcery-emacs for reference */