You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
1016B

  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: 0.5em;
  14. background: #282a36;
  15. }
  16. .hljs-keyword,
  17. .hljs-selector-tag,
  18. .hljs-literal,
  19. .hljs-section,
  20. .hljs-link {
  21. color: #8be9fd;
  22. }
  23. .hljs-function .hljs-keyword {
  24. color: #ff79c6;
  25. }
  26. .hljs,
  27. .hljs-subst {
  28. color: #f8f8f2;
  29. }
  30. .hljs-string,
  31. .hljs-title,
  32. .hljs-name,
  33. .hljs-type,
  34. .hljs-attribute,
  35. .hljs-symbol,
  36. .hljs-bullet,
  37. .hljs-addition,
  38. .hljs-variable,
  39. .hljs-template-tag,
  40. .hljs-template-variable {
  41. color: #f1fa8c;
  42. }
  43. .hljs-comment,
  44. .hljs-quote,
  45. .hljs-deletion,
  46. .hljs-meta {
  47. color: #6272a4;
  48. }
  49. .hljs-keyword,
  50. .hljs-selector-tag,
  51. .hljs-literal,
  52. .hljs-title,
  53. .hljs-section,
  54. .hljs-doctag,
  55. .hljs-type,
  56. .hljs-name,
  57. .hljs-strong {
  58. font-weight: bold;
  59. }
  60. .hljs-emphasis {
  61. font-style: italic;
  62. }