tomorrow-night.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /* this is done to override the hljs theme only for navy & coal
  2. this isnt actually tomorrow-night
  3. */
  4. /*!
  5. Theme: GitHub Dark Dimmed
  6. Description: Dark dimmed theme as seen on github.com
  7. Author: github.com
  8. Maintainer: @Hirse
  9. Updated: 2021-05-15
  10. Colors taken from GitHub's CSS
  11. */
  12. .hljs {
  13. color: #adbac7;
  14. background: #22272e;
  15. display: block;
  16. overflow-x: auto;
  17. }
  18. .hljs-doctag,
  19. .hljs-keyword,
  20. .hljs-meta .hljs-keyword,
  21. .hljs-template-tag,
  22. .hljs-template-variable,
  23. .hljs-type,
  24. .hljs-variable.language_ {
  25. /* prettylights-syntax-keyword */
  26. color: #f47067;
  27. }
  28. .hljs-title,
  29. .hljs-title.class_,
  30. .hljs-title.class_.inherited__,
  31. .hljs-title.function_ {
  32. /* prettylights-syntax-entity */
  33. color: #dcbdfb;
  34. }
  35. .hljs-attr,
  36. .hljs-attribute,
  37. .hljs-literal,
  38. .hljs-meta,
  39. .hljs-number,
  40. .hljs-operator,
  41. .hljs-variable,
  42. .hljs-selector-attr,
  43. .hljs-selector-class,
  44. .hljs-selector-id {
  45. /* prettylights-syntax-constant */
  46. color: #6cb6ff;
  47. }
  48. .hljs-regexp,
  49. .hljs-string,
  50. .hljs-meta .hljs-string {
  51. /* prettylights-syntax-string */
  52. color: #96d0ff;
  53. }
  54. .hljs-built_in,
  55. .hljs-symbol {
  56. /* prettylights-syntax-variable */
  57. color: #f69d50;
  58. }
  59. .hljs-comment,
  60. .hljs-code,
  61. .hljs-formula {
  62. /* prettylights-syntax-comment */
  63. color: #768390;
  64. }
  65. .hljs-name,
  66. .hljs-quote,
  67. .hljs-selector-tag,
  68. .hljs-selector-pseudo {
  69. /* prettylights-syntax-entity-tag */
  70. color: #8ddb8c;
  71. }
  72. .hljs-subst {
  73. /* prettylights-syntax-storage-modifier-import */
  74. color: #adbac7;
  75. }
  76. .hljs-section {
  77. /* prettylights-syntax-markup-heading */
  78. color: #316dca;
  79. font-weight: bold;
  80. }
  81. .hljs-bullet {
  82. /* prettylights-syntax-markup-list */
  83. color: #eac55f;
  84. }
  85. .hljs-emphasis {
  86. /* prettylights-syntax-markup-italic */
  87. color: #adbac7;
  88. font-style: italic;
  89. }
  90. .hljs-strong {
  91. /* prettylights-syntax-markup-bold */
  92. color: #adbac7;
  93. font-weight: bold;
  94. }
  95. .hljs-addition {
  96. /* prettylights-syntax-markup-inserted */
  97. color: #b4f1b4;
  98. background-color: #1b4721;
  99. }
  100. .hljs-deletion {
  101. /* prettylights-syntax-markup-deleted */
  102. color: #ffd8d3;
  103. background-color: #78191b;
  104. }