dark.css 793 B

123456789101112131415161718192021222324252627282930313233343536
  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: .5em;
  8. background: #444;
  9. }
  10. .hljs-keyword, .hljs-selector-tag, .hljs-literal, .hljs-section, .hljs-link {
  11. color: white;
  12. }
  13. .hljs, .hljs-subst {
  14. color: #ddd;
  15. }
  16. .hljs-string, .hljs-title, .hljs-name, .hljs-type, .hljs-attribute, .hljs-symbol, .hljs-bullet, .hljs-built_in, .hljs-addition, .hljs-variable, .hljs-template-tag, .hljs-template-variable {
  17. color: #d88;
  18. }
  19. .hljs-comment, .hljs-quote, .hljs-deletion, .hljs-meta {
  20. color: #777;
  21. }
  22. .hljs-keyword, .hljs-selector-tag, .hljs-literal, .hljs-title, .hljs-section, .hljs-doctag, .hljs-type, .hljs-name, .hljs-strong {
  23. font-weight: bold;
  24. }
  25. .hljs-emphasis {
  26. font-style: italic;
  27. }