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

dracula.css 1.2 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /* Dracula Theme v1.2.5
  2. *
  3. * https://github.com/dracula/highlightjs
  4. *
  5. * Copyright 2016-present, All rights reserved
  6. *
  7. * Code licensed under the MIT license
  8. *
  9. * @author Denis Ciccale <dciccale@gmail.com>
  10. * @author Zeno Rocha <hi@zenorocha.com>
  11. */
  12. .hljs {
  13. display: block;
  14. overflow-x: auto;
  15. padding: 0.5em;
  16. background: #282a36;
  17. }
  18. .hljs-built_in,
  19. .hljs-selector-tag,
  20. .hljs-section,
  21. .hljs-link,
  22. .hljs-keyword {
  23. color: rgb(86, 156, 214) !important;
  24. }
  25. /*
  26. .hljs-keyword {
  27. color: rgb(86, 156, 214);
  28. }
  29. */
  30. .hljs,
  31. .hljs-subst,
  32. .hljs-tag {
  33. color: #f8f8f2 !important;
  34. }
  35. .hljs-string,
  36. .hljs-meta,
  37. .hljs-name,
  38. .hljs-attr,
  39. .hljs-symbol,
  40. .hljs-bullet,
  41. .hljs-addition,
  42. .hljs-variable,
  43. .hljs-template-tag,
  44. .hljs-template-variable {
  45. color: rgb(214, 157, 133) !important;
  46. }
  47. .hljs-title,
  48. .hljs-type {
  49. color: rgb(78, 201, 176) !important;
  50. }
  51. .hljs-comment,
  52. .hljs-quote,
  53. .hljs-deletion {
  54. color: rgb(87, 166, 74) !important;
  55. }
  56. .hljs-keyword,
  57. .hljs-selector-tag,
  58. .hljs-literal,
  59. .hljs-title,
  60. .hljs-section,
  61. .hljs-doctag,
  62. .hljs-type,
  63. .hljs-name,
  64. .hljs-strong {
  65. font-weight: bold;
  66. }
  67. .hljs-literal,
  68. .hljs-number {
  69. color: rgb(181, 206, 168) !important;
  70. }
  71. .hljs-emphasis {
  72. font-style: italic;
  73. }