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.

76 lines
1.1KB

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