idea.css

  1/*
  2
  3Intellij Idea-like styling (c) Vasily Polovnyov <vast@whiteants.net>
  4
  5*/
  6
  7.hljs {
  8  display: block;
  9  overflow-x: auto;
 10  padding: 0.5em;
 11  color: #000;
 12  background: #fff;
 13  -webkit-text-size-adjust: none;
 14}
 15
 16.hljs-subst,
 17.hljs-title,
 18.json .hljs-value {
 19  font-weight: normal;
 20  color: #000;
 21}
 22
 23.hljs-comment,
 24.diff .hljs-header {
 25  color: #808080;
 26  font-style: italic;
 27}
 28
 29.hljs-annotation,
 30.hljs-decorator,
 31.hljs-preprocessor,
 32.hljs-pragma,
 33.hljs-doctype,
 34.hljs-pi,
 35.hljs-chunk,
 36.hljs-shebang,
 37.apache .hljs-cbracket,
 38.hljs-prompt,
 39.http .hljs-title {
 40  color: #808000;
 41}
 42
 43.hljs-tag,
 44.hljs-pi {
 45  background: #efefef;
 46}
 47
 48.hljs-tag .hljs-title,
 49.hljs-id,
 50.hljs-attr_selector,
 51.hljs-pseudo,
 52.hljs-literal,
 53.hljs-keyword,
 54.hljs-hexcolor,
 55.css .hljs-function,
 56.ini .hljs-title,
 57.css .hljs-class,
 58.hljs-list .hljs-keyword,
 59.nginx .hljs-title,
 60.tex .hljs-command,
 61.hljs-request,
 62.hljs-status {
 63  font-weight: bold;
 64  color: #000080;
 65}
 66
 67.hljs-attribute,
 68.hljs-rule .hljs-keyword,
 69.hljs-number,
 70.hljs-date,
 71.hljs-regexp,
 72.tex .hljs-special {
 73  font-weight: bold;
 74  color: #0000ff;
 75}
 76
 77.hljs-number,
 78.hljs-regexp {
 79  font-weight: normal;
 80}
 81
 82.hljs-string,
 83.hljs-value,
 84.hljs-filter .hljs-argument,
 85.css .hljs-function .hljs-params,
 86.apache .hljs-tag {
 87  color: #008000;
 88  font-weight: bold;
 89}
 90
 91.hljs-symbol,
 92.ruby .hljs-symbol .hljs-string,
 93.hljs-char,
 94.tex .hljs-formula {
 95  color: #000;
 96  background: #d0eded;
 97  font-style: italic;
 98}
 99
100.hljs-doctag {
101  text-decoration: underline;
102}
103
104.hljs-variable,
105.hljs-envvar,
106.apache .hljs-sqbracket,
107.nginx .hljs-built_in,
108.hljs-name {
109  color: #660e7a;
110}
111
112.hljs-addition {
113  background: #baeeba;
114}
115
116.hljs-deletion {
117  background: #ffc8bd;
118}
119
120.diff .hljs-change {
121  background: #bccff9;
122}