monokai.css 940 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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;
  9. color: #ddd;
  10. }
  11. .hljs-tag,
  12. .hljs-keyword,
  13. .hljs-selector-tag,
  14. .hljs-literal,
  15. .hljs-strong,
  16. .hljs-name {
  17. color: #f92672;
  18. }
  19. .hljs-code {
  20. color: #66d9ef;
  21. }
  22. .hljs-class .hljs-title {
  23. color: white;
  24. }
  25. .hljs-attribute,
  26. .hljs-symbol,
  27. .hljs-regexp,
  28. .hljs-link {
  29. color: #bf79db;
  30. }
  31. .hljs-string,
  32. .hljs-bullet,
  33. .hljs-subst,
  34. .hljs-title,
  35. .hljs-section,
  36. .hljs-emphasis,
  37. .hljs-type,
  38. .hljs-built_in,
  39. .hljs-builtin-name,
  40. .hljs-selector-attr,
  41. .hljs-selector-pseudo,
  42. .hljs-addition,
  43. .hljs-variable,
  44. .hljs-template-tag,
  45. .hljs-template-variable {
  46. color: #a6e22e;
  47. }
  48. .hljs-comment,
  49. .hljs-quote,
  50. .hljs-deletion,
  51. .hljs-meta {
  52. color: #75715e;
  53. }
  54. .hljs-keyword,
  55. .hljs-selector-tag,
  56. .hljs-literal,
  57. .hljs-doctag,
  58. .hljs-title,
  59. .hljs-section,
  60. .hljs-type,
  61. .hljs-selector-id {
  62. font-weight: bold;
  63. }