prettify.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /* Pretty printing styles. Used with prettify.js. */
  2. /* Vim sunburst theme by David Leibovic */
  3. pre .str {
  4. color: #65B042;
  5. }
  6. /* string - green */
  7. pre .kwd {
  8. color: #E28964;
  9. }
  10. /* keyword - dark pink */
  11. pre .com {
  12. color: #AEAEAE;
  13. font-style: italic;
  14. }
  15. /* comment - gray */
  16. pre .typ {
  17. color: #89bdff;
  18. }
  19. /* type - light blue */
  20. pre .lit {
  21. color: #3387CC;
  22. }
  23. /* literal - blue */
  24. pre .pun {
  25. color: #fff;
  26. }
  27. /* punctuation - white */
  28. pre .pln {
  29. color: #fff;
  30. }
  31. /* plaintext - white */
  32. pre .tag {
  33. color: #89bdff;
  34. }
  35. /* html/xml tag - light blue */
  36. pre .atn {
  37. color: #bdb76b;
  38. }
  39. /* html/xml attribute name - khaki */
  40. pre .atv {
  41. color: #65B042;
  42. }
  43. /* html/xml attribute value - green */
  44. pre .dec {
  45. color: #3387CC;
  46. }
  47. /* decimal - blue */
  48. /* Specify class=linenums on a pre to get line numbering */
  49. ol.linenums {
  50. margin-top: 0;
  51. margin-bottom: 0;
  52. color: #AEAEAE;
  53. }
  54. /* IE indents via margin-left */
  55. li.L0,
  56. li.L1,
  57. li.L2,
  58. li.L3,
  59. li.L5,
  60. li.L6,
  61. li.L7,
  62. li.L8 {
  63. list-style-type: none;
  64. }
  65. /* Alternate shading for lines */
  66. @media print {
  67. pre .str {
  68. color: #060;
  69. }
  70. pre .kwd {
  71. color: #006;
  72. font-weight: bold;
  73. }
  74. pre .com {
  75. color: #600;
  76. font-style: italic;
  77. }
  78. pre .typ {
  79. color: #404;
  80. font-weight: bold;
  81. }
  82. pre .lit {
  83. color: #044;
  84. }
  85. pre .pun {
  86. color: #440;
  87. }
  88. pre .pln {
  89. color: #000;
  90. }
  91. pre .tag {
  92. color: #006;
  93. font-weight: bold;
  94. }
  95. pre .atn {
  96. color: #404;
  97. }
  98. pre .atv {
  99. color: #060;
  100. }
  101. }