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.

75 lines
1.1KB

  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. .hljs-quote {
  7. color: #999999;
  8. }
  9. /* Tomorrow Red */
  10. .hljs-variable,
  11. .hljs-template-variable,
  12. .hljs-tag,
  13. .hljs-name,
  14. .hljs-selector-id,
  15. .hljs-selector-class,
  16. .hljs-regexp,
  17. .hljs-deletion {
  18. color: #f2777a;
  19. }
  20. /* Tomorrow Orange */
  21. .hljs-number,
  22. .hljs-built_in,
  23. .hljs-builtin-name,
  24. .hljs-literal,
  25. .hljs-type,
  26. .hljs-params,
  27. .hljs-meta,
  28. .hljs-link {
  29. color: #f99157;
  30. }
  31. /* Tomorrow Yellow */
  32. .hljs-attribute {
  33. color: #ffcc66;
  34. }
  35. /* Tomorrow Green */
  36. .hljs-string,
  37. .hljs-symbol,
  38. .hljs-bullet,
  39. .hljs-addition {
  40. color: #99cc99;
  41. }
  42. /* Tomorrow Blue */
  43. .hljs-title,
  44. .hljs-section {
  45. color: #6699cc;
  46. }
  47. /* Tomorrow Purple */
  48. .hljs-keyword,
  49. .hljs-selector-tag {
  50. color: #cc99cc;
  51. }
  52. .hljs {
  53. display: block;
  54. overflow-x: auto;
  55. background: #2d2d2d;
  56. color: #cccccc;
  57. padding: 0.5em;
  58. }
  59. .hljs-emphasis {
  60. font-style: italic;
  61. }
  62. .hljs-strong {
  63. font-weight: bold;
  64. }