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.

60 lines
749B

  1. /*
  2. Five-color theme from a single blue hue.
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: 0.5em;
  8. background: #eaeef3;
  9. }
  10. .hljs {
  11. color: #00193a;
  12. }
  13. .hljs-keyword,
  14. .hljs-selector-tag,
  15. .hljs-title,
  16. .hljs-section,
  17. .hljs-doctag,
  18. .hljs-name,
  19. .hljs-strong {
  20. font-weight: bold;
  21. }
  22. .hljs-comment {
  23. color: #738191;
  24. }
  25. .hljs-string,
  26. .hljs-title,
  27. .hljs-section,
  28. .hljs-built_in,
  29. .hljs-literal,
  30. .hljs-type,
  31. .hljs-addition,
  32. .hljs-tag,
  33. .hljs-quote,
  34. .hljs-name,
  35. .hljs-selector-id,
  36. .hljs-selector-class {
  37. color: #0048ab;
  38. }
  39. .hljs-meta,
  40. .hljs-subst,
  41. .hljs-symbol,
  42. .hljs-regexp,
  43. .hljs-attribute,
  44. .hljs-deletion,
  45. .hljs-variable,
  46. .hljs-template-variable,
  47. .hljs-link,
  48. .hljs-bullet {
  49. color: #4c81c9;
  50. }
  51. .hljs-emphasis {
  52. font-style: italic;
  53. }