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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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);
  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-type,
  39. .hljs-attr,
  40. .hljs-symbol,
  41. .hljs-bullet,
  42. .hljs-addition,
  43. .hljs-variable,
  44. .hljs-template-tag,
  45. .hljs-template-variable,
  46. .hljs-title {
  47. color: rgb(214, 157, 133);
  48. }
  49. .hljs-title {
  50. color: rgb(78, 201, 176);
  51. }
  52. .hljs-comment,
  53. .hljs-quote,
  54. .hljs-deletion {
  55. color: rgb(87, 166, 74);
  56. }
  57. .hljs-keyword,
  58. .hljs-selector-tag,
  59. .hljs-literal,
  60. .hljs-title,
  61. .hljs-section,
  62. .hljs-doctag,
  63. .hljs-type,
  64. .hljs-name,
  65. .hljs-strong {
  66. font-weight: bold;
  67. }
  68. .hljs-literal,
  69. .hljs-number {
  70. color: rgb(181, 206, 168);
  71. }
  72. .hljs-emphasis {
  73. font-style: italic;
  74. }