1/* 2 3vim-hybrid theme by w0ng (https://github.com/w0ng/vim-hybrid) 4 5*/ 6 7/*background color*/ 8.hljs { 9 display: block; 10 overflow-x: auto; 11 padding: 0.5em; 12 background: #1d1f21; 13} 14 15/*selection color*/ 16.hljs::selection, 17.hljs span::selection { 18 background: #373b41; 19} 20 21.hljs::-moz-selection, 22.hljs span::-moz-selection { 23 background: #373b41; 24} 25 26/*foreground color*/ 27.hljs { 28 color: #c5c8c6; 29} 30 31/*color: fg_yellow*/ 32.hljs-title, 33.hljs-name { 34 color: #f0c674; 35} 36 37/*color: fg_comment*/ 38.hljs-comment, 39.hljs-meta, 40.hljs-meta .hljs-keyword { 41 color: #707880; 42} 43 44/*color: fg_red*/ 45.hljs-number, 46.hljs-symbol, 47.hljs-literal, 48.hljs-deletion, 49.hljs-link { 50 color: #cc6666 51} 52 53/*color: fg_green*/ 54.hljs-string, 55.hljs-doctag, 56.hljs-addition, 57.hljs-regexp, 58.hljs-selector-attr, 59.hljs-selector-pseudo { 60 color: #b5bd68; 61} 62 63/*color: fg_purple*/ 64.hljs-attribute, 65.hljs-code, 66.hljs-selector-id { 67 color: #b294bb; 68} 69 70/*color: fg_blue*/ 71.hljs-keyword, 72.hljs-selector-tag, 73.hljs-bullet, 74.hljs-tag { 75 color: #81a2be; 76} 77 78/*color: fg_aqua*/ 79.hljs-subst, 80.hljs-variable, 81.hljs-template-tag, 82.hljs-template-variable { 83 color: #8abeb7; 84} 85 86/*color: fg_orange*/ 87.hljs-type, 88.hljs-built_in, 89.hljs-builtin-name, 90.hljs-quote, 91.hljs-section, 92.hljs-selector-class { 93 color: #de935f; 94} 95 96.hljs-emphasis { 97 font-style: italic; 98} 99 100.hljs-strong { 101 font-weight: bold; 102} 103