monokai.css 939 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. Monokai style - ported by Luigi Maselli - http://grigio.org
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: .5em;
  8. background: #272822;
  9. color: #ddd;
  10. }
  11. .hljs-tag, .hljs-keyword, .hljs-selector-tag, .hljs-literal, .hljs-strong, .hljs-name {
  12. color: #f92672;
  13. }
  14. .hljs-code {
  15. color: #66d9ef;
  16. }
  17. .hljs-class .hljs-title {
  18. color: white;
  19. }
  20. .hljs-attribute, .hljs-symbol, .hljs-regexp, .hljs-link {
  21. color: #bf79db;
  22. }
  23. .hljs-string, .hljs-bullet, .hljs-subst, .hljs-title, .hljs-section, .hljs-emphasis, .hljs-type, .hljs-built_in, .hljs-builtin-name, .hljs-selector-attr, .hljs-selector-pseudo, .hljs-addition, .hljs-variable, .hljs-template-tag, .hljs-template-variable {
  24. color: #a6e22e;
  25. }
  26. .hljs-comment, .hljs-quote, .hljs-deletion, .hljs-meta {
  27. color: #75715e;
  28. }
  29. .hljs-keyword, .hljs-selector-tag, .hljs-literal, .hljs-doctag, .hljs-title, .hljs-section, .hljs-type, .hljs-selector-id {
  30. font-weight: bold;
  31. }