highlight.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. pre code.hljs {
  2. display: block;
  3. overflow-x: auto;
  4. padding: 1em
  5. }
  6. code.hljs {
  7. padding: 3px 5px
  8. }
  9. /*!
  10. Theme: GitHub
  11. Description: Light theme as seen on github.com
  12. Author: github.com
  13. Maintainer: @Hirse
  14. Updated: 2021-05-15
  15. Outdated base version: https://github.com/primer/github-syntax-light
  16. Current colors taken from GitHub's CSS
  17. */
  18. .hljs {
  19. color: #24292e;
  20. background: #ffffff
  21. }
  22. .hljs-doctag,
  23. .hljs-keyword,
  24. .hljs-meta .hljs-keyword,
  25. .hljs-template-tag,
  26. .hljs-template-variable,
  27. .hljs-type,
  28. .hljs-variable.language_ {
  29. /* prettylights-syntax-keyword */
  30. color: #d73a49
  31. }
  32. .hljs-title,
  33. .hljs-title.class_,
  34. .hljs-title.class_.inherited__,
  35. .hljs-title.function_ {
  36. /* prettylights-syntax-entity */
  37. color: #6f42c1
  38. }
  39. .hljs-attr,
  40. .hljs-attribute,
  41. .hljs-literal,
  42. .hljs-meta,
  43. .hljs-number,
  44. .hljs-operator,
  45. .hljs-variable,
  46. .hljs-selector-attr,
  47. .hljs-selector-class,
  48. .hljs-selector-id {
  49. /* prettylights-syntax-constant */
  50. color: #005cc5
  51. }
  52. .hljs-regexp,
  53. .hljs-string,
  54. .hljs-meta .hljs-string {
  55. /* prettylights-syntax-string */
  56. color: #032f62
  57. }
  58. .hljs-built_in,
  59. .hljs-symbol {
  60. /* prettylights-syntax-variable */
  61. color: #e36209
  62. }
  63. .hljs-comment,
  64. .hljs-code,
  65. .hljs-formula {
  66. /* prettylights-syntax-comment */
  67. color: #6a737d
  68. }
  69. .hljs-name,
  70. .hljs-quote,
  71. .hljs-selector-tag,
  72. .hljs-selector-pseudo {
  73. /* prettylights-syntax-entity-tag */
  74. color: #22863a
  75. }
  76. .hljs-subst {
  77. /* prettylights-syntax-storage-modifier-import */
  78. color: #24292e
  79. }
  80. .hljs-section {
  81. /* prettylights-syntax-markup-heading */
  82. color: #005cc5;
  83. font-weight: bold
  84. }
  85. .hljs-bullet {
  86. /* prettylights-syntax-markup-list */
  87. color: #735c0f
  88. }
  89. .hljs-emphasis {
  90. /* prettylights-syntax-markup-italic */
  91. color: #24292e;
  92. font-style: italic
  93. }
  94. .hljs-strong {
  95. /* prettylights-syntax-markup-bold */
  96. color: #24292e;
  97. font-weight: bold
  98. }
  99. .hljs-addition {
  100. /* prettylights-syntax-markup-inserted */
  101. color: #22863a;
  102. background-color: #f0fff4
  103. }
  104. .hljs-deletion {
  105. /* prettylights-syntax-markup-deleted */
  106. color: #b31d28;
  107. background-color: #ffeef0
  108. }
  109. .hljs-char.escape_,
  110. .hljs-link,
  111. .hljs-params,
  112. .hljs-property,
  113. .hljs-punctuation,
  114. .hljs-tag {
  115. /* purposely ignored */
  116. }