github.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /*
  2. github.com style (c) Vasily Polovnyov <vast@whiteants.net>
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: 0.5em;
  8. color: #333;
  9. background: #f8f8f8;
  10. -webkit-text-size-adjust: none;
  11. }
  12. .hljs-comment,
  13. .hljs-template_comment,
  14. .diff .hljs-header,
  15. .hljs-javadoc {
  16. color: #998;
  17. font-style: italic;
  18. }
  19. .hljs-keyword,
  20. .css .rule .hljs-keyword,
  21. .hljs-winutils,
  22. .javascript .hljs-title,
  23. .nginx .hljs-title,
  24. .hljs-subst,
  25. .hljs-request,
  26. .hljs-status {
  27. color: #333;
  28. font-weight: bold;
  29. }
  30. .hljs-number,
  31. .hljs-hexcolor,
  32. .ruby .hljs-constant {
  33. color: #008080;
  34. }
  35. .hljs-string,
  36. .hljs-tag .hljs-value,
  37. .hljs-phpdoc,
  38. .hljs-dartdoc,
  39. .tex .hljs-formula {
  40. color: #d14;
  41. }
  42. .hljs-title,
  43. .hljs-id,
  44. .scss .hljs-preprocessor {
  45. color: #900;
  46. font-weight: bold;
  47. }
  48. .javascript .hljs-title,
  49. .hljs-list .hljs-keyword,
  50. .hljs-subst {
  51. font-weight: normal;
  52. }
  53. .hljs-class .hljs-title,
  54. .hljs-type,
  55. .vhdl .hljs-literal,
  56. .tex .hljs-command {
  57. color: #458;
  58. font-weight: bold;
  59. }
  60. .hljs-tag,
  61. .hljs-tag .hljs-title,
  62. .hljs-rules .hljs-property,
  63. .django .hljs-tag .hljs-keyword {
  64. color: #000080;
  65. font-weight: normal;
  66. }
  67. .hljs-attribute,
  68. .hljs-variable,
  69. .lisp .hljs-body {
  70. color: #008080;
  71. }
  72. .hljs-regexp {
  73. color: #009926;
  74. }
  75. .hljs-symbol,
  76. .ruby .hljs-symbol .hljs-string,
  77. .lisp .hljs-keyword,
  78. .clojure .hljs-keyword,
  79. .scheme .hljs-keyword,
  80. .tex .hljs-special,
  81. .hljs-prompt {
  82. color: #990073;
  83. }
  84. .hljs-built_in {
  85. color: #0086b3;
  86. }
  87. .hljs-preprocessor,
  88. .hljs-pragma,
  89. .hljs-pi,
  90. .hljs-doctype,
  91. .hljs-shebang,
  92. .hljs-cdata {
  93. color: #999;
  94. font-weight: bold;
  95. }
  96. .hljs-deletion {
  97. background: #fdd;
  98. }
  99. .hljs-addition {
  100. background: #dfd;
  101. }
  102. .diff .hljs-change {
  103. background: #0086b3;
  104. }
  105. .hljs-chunk {
  106. color: #aaa;
  107. }