tomorrow-night.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /* Tomorrow Night Theme */
  2. /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
  3. /* Original theme - https://github.com/chriskempson/tomorrow-theme */
  4. /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
  5. /* Tomorrow Comment */
  6. .hljs-comment {
  7. color: #969896;
  8. }
  9. /* Tomorrow Red */
  10. .hljs-variable,
  11. .hljs-attribute,
  12. .hljs-tag,
  13. .hljs-regexp,
  14. .ruby .hljs-constant,
  15. .xml .hljs-tag .hljs-title,
  16. .xml .hljs-pi,
  17. .xml .hljs-doctype,
  18. .html .hljs-doctype,
  19. .css .hljs-id,
  20. .css .hljs-class,
  21. .css .hljs-pseudo {
  22. color: #cc6666;
  23. }
  24. /* Tomorrow Orange */
  25. .hljs-number,
  26. .hljs-preprocessor,
  27. .hljs-pragma,
  28. .hljs-built_in,
  29. .hljs-literal,
  30. .hljs-params,
  31. .hljs-constant {
  32. color: #de935f;
  33. }
  34. /* Tomorrow Yellow */
  35. .ruby .hljs-class .hljs-title,
  36. .css .hljs-rule .hljs-attribute {
  37. color: #f0c674;
  38. }
  39. /* Tomorrow Green */
  40. .hljs-string,
  41. .hljs-value,
  42. .hljs-inheritance,
  43. .hljs-header,
  44. .hljs-name,
  45. .ruby .hljs-symbol,
  46. .xml .hljs-cdata {
  47. color: #b5bd68;
  48. }
  49. /* Tomorrow Aqua */
  50. .hljs-title,
  51. .css .hljs-hexcolor {
  52. color: #8abeb7;
  53. }
  54. /* Tomorrow Blue */
  55. .hljs-function,
  56. .python .hljs-decorator,
  57. .python .hljs-title,
  58. .ruby .hljs-function .hljs-title,
  59. .ruby .hljs-title .hljs-keyword,
  60. .perl .hljs-sub,
  61. .javascript .hljs-title,
  62. .coffeescript .hljs-title {
  63. color: #81a2be;
  64. }
  65. /* Tomorrow Purple */
  66. .hljs-keyword,
  67. .javascript .hljs-function {
  68. color: #b294bb;
  69. }
  70. .hljs {
  71. display: block;
  72. overflow-x: auto;
  73. background: #1d1f21;
  74. color: #c5c8c6;
  75. padding: 0.5em;
  76. -webkit-text-size-adjust: none;
  77. }
  78. .coffeescript .javascript,
  79. .javascript .xml,
  80. .tex .hljs-formula,
  81. .xml .javascript,
  82. .xml .vbscript,
  83. .xml .css,
  84. .xml .hljs-cdata {
  85. opacity: 0.5;
  86. }
  87. .hljs-addition {
  88. color: #718c00;
  89. }
  90. .hljs-deletion {
  91. color: #c82829;
  92. }