dracula.css 1015 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. Dracula Theme v1.2.0
  3. https://github.com/zenorocha/dracula-theme
  4. Copyright 2015, All rights reserved
  5. Code licensed under the MIT license
  6. http://zenorocha.mit-license.org
  7. @author Éverton Ribeiro <nuxlli@gmail.com>
  8. @author Zeno Rocha <hi@zenorocha.com>
  9. */
  10. .hljs {
  11. display: block;
  12. overflow-x: auto;
  13. padding: .5em;
  14. background: #282a36;
  15. }
  16. .hljs-keyword, .hljs-selector-tag, .hljs-literal, .hljs-section, .hljs-link {
  17. color: #8be9fd;
  18. }
  19. .hljs-function .hljs-keyword {
  20. color: #ff79c6;
  21. }
  22. .hljs, .hljs-subst {
  23. color: #f8f8f2;
  24. }
  25. .hljs-string, .hljs-title, .hljs-name, .hljs-type, .hljs-attribute, .hljs-symbol, .hljs-bullet, .hljs-addition, .hljs-variable, .hljs-template-tag, .hljs-template-variable {
  26. color: #f1fa8c;
  27. }
  28. .hljs-comment, .hljs-quote, .hljs-deletion, .hljs-meta {
  29. color: #6272a4;
  30. }
  31. .hljs-keyword, .hljs-selector-tag, .hljs-literal, .hljs-title, .hljs-section, .hljs-doctag, .hljs-type, .hljs-name, .hljs-strong {
  32. font-weight: bold;
  33. }
  34. .hljs-emphasis {
  35. font-style: italic;
  36. }