prettify-jsdoc.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /* JSDoc prettify.js theme */
  2. /* plain text */
  3. .pln {
  4. color: #000000;
  5. font-weight: normal;
  6. font-style: normal;
  7. }
  8. /* string content */
  9. .str {
  10. color: #006400;
  11. font-weight: normal;
  12. font-style: normal;
  13. }
  14. /* a keyword */
  15. .kwd {
  16. color: #000000;
  17. font-weight: bold;
  18. font-style: normal;
  19. }
  20. /* a comment */
  21. .com {
  22. font-weight: normal;
  23. font-style: italic;
  24. }
  25. /* a type name */
  26. .typ {
  27. color: #000000;
  28. font-weight: normal;
  29. font-style: normal;
  30. }
  31. /* a literal value */
  32. .lit {
  33. color: #006400;
  34. font-weight: normal;
  35. font-style: normal;
  36. }
  37. /* punctuation */
  38. .pun {
  39. color: #000000;
  40. font-weight: bold;
  41. font-style: normal;
  42. }
  43. /* lisp open bracket */
  44. .opn {
  45. color: #000000;
  46. font-weight: bold;
  47. font-style: normal;
  48. }
  49. /* lisp close bracket */
  50. .clo {
  51. color: #000000;
  52. font-weight: bold;
  53. font-style: normal;
  54. }
  55. /* a markup tag name */
  56. .tag {
  57. color: #006400;
  58. font-weight: normal;
  59. font-style: normal;
  60. }
  61. /* a markup attribute name */
  62. .atn {
  63. color: #006400;
  64. font-weight: normal;
  65. font-style: normal;
  66. }
  67. /* a markup attribute value */
  68. .atv {
  69. color: #006400;
  70. font-weight: normal;
  71. font-style: normal;
  72. }
  73. /* a declaration */
  74. .dec {
  75. color: #000000;
  76. font-weight: bold;
  77. font-style: normal;
  78. }
  79. /* a variable name */
  80. .var {
  81. color: #000000;
  82. font-weight: normal;
  83. font-style: normal;
  84. }
  85. /* a function name */
  86. .fun {
  87. color: #000000;
  88. font-weight: bold;
  89. font-style: normal;
  90. }
  91. /* Specify class=linenums on a pre to get line numbering */
  92. ol.linenums {
  93. margin-top: 0;
  94. margin-bottom: 0;
  95. }