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.

71 lines
938B

  1. /*
  2. Monokai style - ported by Luigi Maselli - http://grigio.org
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: 0.5em;
  8. background: #272822; color: #ddd;
  9. }
  10. .hljs-tag,
  11. .hljs-keyword,
  12. .hljs-selector-tag,
  13. .hljs-literal,
  14. .hljs-strong,
  15. .hljs-name {
  16. color: #f92672;
  17. }
  18. .hljs-code {
  19. color: #66d9ef;
  20. }
  21. .hljs-class .hljs-title {
  22. color: white;
  23. }
  24. .hljs-attribute,
  25. .hljs-symbol,
  26. .hljs-regexp,
  27. .hljs-link {
  28. color: #bf79db;
  29. }
  30. .hljs-string,
  31. .hljs-bullet,
  32. .hljs-subst,
  33. .hljs-title,
  34. .hljs-section,
  35. .hljs-emphasis,
  36. .hljs-type,
  37. .hljs-built_in,
  38. .hljs-builtin-name,
  39. .hljs-selector-attr,
  40. .hljs-selector-pseudo,
  41. .hljs-addition,
  42. .hljs-variable,
  43. .hljs-template-tag,
  44. .hljs-template-variable {
  45. color: #a6e22e;
  46. }
  47. .hljs-comment,
  48. .hljs-quote,
  49. .hljs-deletion,
  50. .hljs-meta {
  51. color: #75715e;
  52. }
  53. .hljs-keyword,
  54. .hljs-selector-tag,
  55. .hljs-literal,
  56. .hljs-doctag,
  57. .hljs-title,
  58. .hljs-section,
  59. .hljs-type,
  60. .hljs-selector-id {
  61. font-weight: bold;
  62. }