Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

79 lignes
1.0KB

  1. /*
  2. Description: Srcery dark color scheme for highlight.js
  3. Author: Chen Bin <chen.bin@gmail.com>
  4. Website: https://srcery-colors.github.io/
  5. Date: 2020-04-06
  6. */
  7. .hljs {
  8. display: block;
  9. overflow-x: auto;
  10. padding: 0.5em;
  11. background: #1C1B19;
  12. color: #FCE8C3;
  13. }
  14. .hljs-strong,
  15. .hljs-emphasis {
  16. color: #918175;
  17. }
  18. .hljs-bullet,
  19. .hljs-quote,
  20. .hljs-link,
  21. .hljs-number,
  22. .hljs-regexp,
  23. .hljs-literal {
  24. color: #FF5C8F;
  25. }
  26. .hljs-code,
  27. .hljs-selector-class {
  28. color: #68A8E4
  29. }
  30. .hljs-emphasis {
  31. font-style: italic;
  32. }
  33. .hljs-keyword,
  34. .hljs-selector-tag,
  35. .hljs-section,
  36. .hljs-attribute,
  37. .hljs-variable {
  38. color: #EF2F27;
  39. }
  40. .hljs-name,
  41. .hljs-title {
  42. color: #FBB829;
  43. }
  44. .hljs-type,
  45. .hljs-params {
  46. color: #0AAEB3;
  47. }
  48. .hljs-string {
  49. color: #98BC37;
  50. }
  51. .hljs-subst,
  52. .hljs-built_in,
  53. .hljs-builtin-name,
  54. .hljs-symbol,
  55. .hljs-selector-id,
  56. .hljs-selector-attr,
  57. .hljs-selector-pseudo,
  58. .hljs-template-tag,
  59. .hljs-template-variable,
  60. .hljs-addition {
  61. color: #C07ABE;
  62. }
  63. .hljs-comment,
  64. .hljs-deletion,
  65. .hljs-meta {
  66. color: #918175;
  67. }