monokai-sublime.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. pre code.hljs {
  2. display: block;
  3. overflow-x: auto;
  4. padding: 1em
  5. }
  6. code.hljs {
  7. padding: 3px 5px
  8. }
  9. /*
  10. Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/
  11. */
  12. .hljs {
  13. background: #23241f;
  14. color: #f8f8f2
  15. }
  16. .hljs-tag,
  17. .hljs-subst {
  18. color: #f8f8f2
  19. }
  20. .hljs-strong,
  21. .hljs-emphasis {
  22. color: #a8a8a2
  23. }
  24. .hljs-bullet,
  25. .hljs-quote,
  26. .hljs-number,
  27. .hljs-regexp,
  28. .hljs-literal,
  29. .hljs-link {
  30. color: #ae81ff
  31. }
  32. .hljs-code,
  33. .hljs-title,
  34. .hljs-section,
  35. .hljs-selector-class {
  36. color: #a6e22e
  37. }
  38. .hljs-strong {
  39. font-weight: bold
  40. }
  41. .hljs-emphasis {
  42. font-style: italic
  43. }
  44. .hljs-keyword,
  45. .hljs-selector-tag,
  46. .hljs-name,
  47. .hljs-attr {
  48. color: #f92672
  49. }
  50. .hljs-symbol,
  51. .hljs-attribute {
  52. color: #66d9ef
  53. }
  54. .hljs-params,
  55. .hljs-title.class_,
  56. .hljs-class .hljs-title {
  57. color: #f8f8f2
  58. }
  59. .hljs-string,
  60. .hljs-type,
  61. .hljs-built_in,
  62. .hljs-selector-id,
  63. .hljs-selector-attr,
  64. .hljs-selector-pseudo,
  65. .hljs-addition,
  66. .hljs-variable,
  67. .hljs-template-variable {
  68. color: #e6db74
  69. }
  70. .hljs-comment,
  71. .hljs-deletion,
  72. .hljs-meta {
  73. color: #75715e
  74. }