github-dark-dimmed.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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 Dark Dimmed
  11. Description: Dark dimmed theme as seen on github.com
  12. Author: github.com
  13. Maintainer: @Hirse
  14. Updated: 2021-05-15
  15. Colors taken from GitHub's CSS
  16. */
  17. .hljs {
  18. color: #adbac7;
  19. background: #22272e
  20. }
  21. .hljs-doctag,
  22. .hljs-keyword,
  23. .hljs-meta .hljs-keyword,
  24. .hljs-template-tag,
  25. .hljs-template-variable,
  26. .hljs-type,
  27. .hljs-variable.language_ {
  28. /* prettylights-syntax-keyword */
  29. color: #f47067
  30. }
  31. .hljs-title,
  32. .hljs-title.class_,
  33. .hljs-title.class_.inherited__,
  34. .hljs-title.function_ {
  35. /* prettylights-syntax-entity */
  36. color: #dcbdfb
  37. }
  38. .hljs-attr,
  39. .hljs-attribute,
  40. .hljs-literal,
  41. .hljs-meta,
  42. .hljs-number,
  43. .hljs-operator,
  44. .hljs-variable,
  45. .hljs-selector-attr,
  46. .hljs-selector-class,
  47. .hljs-selector-id {
  48. /* prettylights-syntax-constant */
  49. color: #6cb6ff
  50. }
  51. .hljs-regexp,
  52. .hljs-string,
  53. .hljs-meta .hljs-string {
  54. /* prettylights-syntax-string */
  55. color: #96d0ff
  56. }
  57. .hljs-built_in,
  58. .hljs-symbol {
  59. /* prettylights-syntax-variable */
  60. color: #f69d50
  61. }
  62. .hljs-comment,
  63. .hljs-code,
  64. .hljs-formula {
  65. /* prettylights-syntax-comment */
  66. color: #768390
  67. }
  68. .hljs-name,
  69. .hljs-quote,
  70. .hljs-selector-tag,
  71. .hljs-selector-pseudo {
  72. /* prettylights-syntax-entity-tag */
  73. color: #8ddb8c
  74. }
  75. .hljs-subst {
  76. /* prettylights-syntax-storage-modifier-import */
  77. color: #adbac7
  78. }
  79. .hljs-section {
  80. /* prettylights-syntax-markup-heading */
  81. color: #316dca;
  82. font-weight: bold
  83. }
  84. .hljs-bullet {
  85. /* prettylights-syntax-markup-list */
  86. color: #eac55f
  87. }
  88. .hljs-emphasis {
  89. /* prettylights-syntax-markup-italic */
  90. color: #adbac7;
  91. font-style: italic
  92. }
  93. .hljs-strong {
  94. /* prettylights-syntax-markup-bold */
  95. color: #adbac7;
  96. font-weight: bold
  97. }
  98. .hljs-addition {
  99. /* prettylights-syntax-markup-inserted */
  100. color: #b4f1b4;
  101. background-color: #1b4721
  102. }
  103. .hljs-deletion {
  104. /* prettylights-syntax-markup-deleted */
  105. color: #ffd8d3;
  106. background-color: #78191b
  107. }
  108. .hljs-char.escape_,
  109. .hljs-link,
  110. .hljs-params,
  111. .hljs-property,
  112. .hljs-punctuation,
  113. .hljs-tag {
  114. /* purposely ignored */
  115. }