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.

94 lines
1.6 KiB

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