You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 lines
1.6 KiB

  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-rules .hljs-attribute {
  37. color: #f0c674;
  38. }
  39. /* Tomorrow Green */
  40. .hljs-string,
  41. .hljs-value,
  42. .hljs-inheritance,
  43. .hljs-header,
  44. .ruby .hljs-symbol,
  45. .xml .hljs-cdata {
  46. color: #b5bd68;
  47. }
  48. /* Tomorrow Aqua */
  49. .hljs-title,
  50. .css .hljs-hexcolor {
  51. color: #8abeb7;
  52. }
  53. /* Tomorrow Blue */
  54. .hljs-function,
  55. .python .hljs-decorator,
  56. .python .hljs-title,
  57. .ruby .hljs-function .hljs-title,
  58. .ruby .hljs-title .hljs-keyword,
  59. .perl .hljs-sub,
  60. .javascript .hljs-title,
  61. .coffeescript .hljs-title {
  62. color: #81a2be;
  63. }
  64. /* Tomorrow Purple */
  65. .hljs-keyword,
  66. .javascript .hljs-function {
  67. color: #b294bb;
  68. }
  69. .hljs {
  70. display: block;
  71. overflow-x: auto;
  72. background: #1d1f21;
  73. color: #c5c8c6;
  74. padding: 0.5em;
  75. -webkit-text-size-adjust: none;
  76. }
  77. .coffeescript .javascript,
  78. .javascript .xml,
  79. .tex .hljs-formula,
  80. .xml .javascript,
  81. .xml .vbscript,
  82. .xml .css,
  83. .xml .hljs-cdata {
  84. opacity: 0.5;
  85. }