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.

64 lines
794B

  1. /*
  2. Dark style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: 0.5em;
  8. background: #444;
  9. }
  10. .hljs-keyword,
  11. .hljs-selector-tag,
  12. .hljs-literal,
  13. .hljs-section,
  14. .hljs-link {
  15. color: white;
  16. }
  17. .hljs,
  18. .hljs-subst {
  19. color: #ddd;
  20. }
  21. .hljs-string,
  22. .hljs-title,
  23. .hljs-name,
  24. .hljs-type,
  25. .hljs-attribute,
  26. .hljs-symbol,
  27. .hljs-bullet,
  28. .hljs-built_in,
  29. .hljs-addition,
  30. .hljs-variable,
  31. .hljs-template-tag,
  32. .hljs-template-variable {
  33. color: #d88;
  34. }
  35. .hljs-comment,
  36. .hljs-quote,
  37. .hljs-deletion,
  38. .hljs-meta {
  39. color: #777;
  40. }
  41. .hljs-keyword,
  42. .hljs-selector-tag,
  43. .hljs-literal,
  44. .hljs-title,
  45. .hljs-section,
  46. .hljs-doctag,
  47. .hljs-type,
  48. .hljs-name,
  49. .hljs-strong {
  50. font-weight: bold;
  51. }
  52. .hljs-emphasis {
  53. font-style: italic;
  54. }