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.

73 lines
978B

  1. /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
  2. /* Tomorrow Comment */
  3. .hljs-comment,
  4. .hljs-quote {
  5. color: #8e908c;
  6. }
  7. /* Tomorrow Red */
  8. .hljs-variable,
  9. .hljs-template-variable,
  10. .hljs-tag,
  11. .hljs-name,
  12. .hljs-selector-id,
  13. .hljs-selector-class,
  14. .hljs-regexp,
  15. .hljs-deletion {
  16. color: #c82829;
  17. }
  18. /* Tomorrow Orange */
  19. .hljs-number,
  20. .hljs-built_in,
  21. .hljs-builtin-name,
  22. .hljs-literal,
  23. .hljs-type,
  24. .hljs-params,
  25. .hljs-meta,
  26. .hljs-link {
  27. color: #f5871f;
  28. }
  29. /* Tomorrow Yellow */
  30. .hljs-attribute {
  31. color: #eab700;
  32. }
  33. /* Tomorrow Green */
  34. .hljs-string,
  35. .hljs-symbol,
  36. .hljs-bullet,
  37. .hljs-addition {
  38. color: #718c00;
  39. }
  40. /* Tomorrow Blue */
  41. .hljs-title,
  42. .hljs-section {
  43. color: #4271ae;
  44. }
  45. /* Tomorrow Purple */
  46. .hljs-keyword,
  47. .hljs-selector-tag {
  48. color: #8959a8;
  49. }
  50. .hljs {
  51. display: block;
  52. overflow-x: auto;
  53. background: white;
  54. color: #4d4d4c;
  55. padding: 0.5em;
  56. }
  57. .hljs-emphasis {
  58. font-style: italic;
  59. }
  60. .hljs-strong {
  61. font-weight: bold;
  62. }