docco.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*
  2. Docco style used in http://jashkenas.github.com/docco/ converted by Simon Madine (@thingsinjars)
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: 0.5em;
  8. color: #000;
  9. background: #f8f8ff;
  10. -webkit-text-size-adjust: none;
  11. }
  12. .hljs-comment,
  13. .hljs-template_comment,
  14. .diff .hljs-header,
  15. .hljs-javadoc {
  16. color: #408080;
  17. font-style: italic;
  18. }
  19. .hljs-keyword,
  20. .assignment,
  21. .hljs-literal,
  22. .css .rule .hljs-keyword,
  23. .hljs-winutils,
  24. .javascript .hljs-title,
  25. .lisp .hljs-title,
  26. .hljs-subst {
  27. color: #954121;
  28. }
  29. .hljs-number,
  30. .hljs-hexcolor {
  31. color: #40a070;
  32. }
  33. .hljs-string,
  34. .hljs-tag .hljs-value,
  35. .hljs-phpdoc,
  36. .hljs-dartdoc,
  37. .tex .hljs-formula {
  38. color: #219161;
  39. }
  40. .hljs-title,
  41. .hljs-id {
  42. color: #19469d;
  43. }
  44. .hljs-params {
  45. color: #00f;
  46. }
  47. .javascript .hljs-title,
  48. .lisp .hljs-title,
  49. .hljs-subst {
  50. font-weight: normal;
  51. }
  52. .hljs-class .hljs-title,
  53. .haskell .hljs-label,
  54. .tex .hljs-command {
  55. color: #458;
  56. font-weight: bold;
  57. }
  58. .hljs-tag,
  59. .hljs-tag .hljs-title,
  60. .hljs-rules .hljs-property,
  61. .django .hljs-tag .hljs-keyword {
  62. color: #000080;
  63. font-weight: normal;
  64. }
  65. .hljs-attribute,
  66. .hljs-variable,
  67. .instancevar,
  68. .lisp .hljs-body {
  69. color: #008080;
  70. }
  71. .hljs-regexp {
  72. color: #b68;
  73. }
  74. .hljs-class {
  75. color: #458;
  76. font-weight: bold;
  77. }
  78. .hljs-symbol,
  79. .ruby .hljs-symbol .hljs-string,
  80. .ruby .hljs-symbol .hljs-keyword,
  81. .ruby .hljs-symbol .keymethods,
  82. .lisp .hljs-keyword,
  83. .tex .hljs-special,
  84. .input_number {
  85. color: #990073;
  86. }
  87. .builtin,
  88. .constructor,
  89. .hljs-built_in,
  90. .lisp .hljs-title {
  91. color: #0086b3;
  92. }
  93. .hljs-preprocessor,
  94. .hljs-pragma,
  95. .hljs-pi,
  96. .hljs-doctype,
  97. .hljs-shebang,
  98. .hljs-cdata {
  99. color: #999;
  100. font-weight: bold;
  101. }
  102. .hljs-deletion {
  103. background: #fdd;
  104. }
  105. .hljs-addition {
  106. background: #dfd;
  107. }
  108. .diff .hljs-change {
  109. background: #0086b3;
  110. }
  111. .hljs-chunk {
  112. color: #aaa;
  113. }
  114. .tex .hljs-formula {
  115. opacity: 0.5;
  116. }