highlight.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. /*
  2. https://raw.githubusercontent.com/isagalaev/highlight.js/master/src/styles/vs2015.css
  3. */
  4. /*
  5. * Visual Studio 2015 dark style
  6. * Author: Nicolas LLOBERA <nllobera@gmail.com>
  7. */
  8. .hljs-keyword,
  9. .hljs-literal,
  10. .hljs-symbol,
  11. .hljs-name {
  12. color: #569CD6;
  13. }
  14. .hljs-link {
  15. color: #569CD6;
  16. text-decoration: underline;
  17. }
  18. .hljs-built_in,
  19. .hljs-type {
  20. color: #4EC9B0;
  21. }
  22. .hljs-number,
  23. .hljs-class {
  24. color: #B8D7A3;
  25. }
  26. .hljs-string,
  27. .hljs-meta-string {
  28. color: #D69D85;
  29. }
  30. .hljs-regexp,
  31. .hljs-template-tag {
  32. color: #9A5334;
  33. }
  34. .hljs-subst,
  35. .hljs-function,
  36. .hljs-title,
  37. .hljs-params,
  38. .hljs-formula {
  39. color: #DCDCDC;
  40. }
  41. .hljs-comment,
  42. .hljs-quote {
  43. color: #57A64A;
  44. font-style: italic;
  45. }
  46. .hljs-doctag {
  47. color: #608B4E;
  48. }
  49. .hljs-meta,
  50. .hljs-meta-keyword,
  51. .hljs-tag {
  52. color: #9B9B9B;
  53. }
  54. .hljs-variable,
  55. .hljs-template-variable {
  56. color: #BD63C5;
  57. }
  58. .hljs-attr,
  59. .hljs-attribute,
  60. .hljs-builtin-name {
  61. color: #9CDCFE;
  62. }
  63. .hljs-section {
  64. color: gold;
  65. }
  66. .hljs-emphasis {
  67. font-style: italic;
  68. }
  69. .hljs-strong {
  70. font-weight: bold;
  71. }
  72. /*.hljs-code {
  73. font-family:'Monospace';
  74. }*/
  75. .hljs-bullet,
  76. .hljs-selector-tag,
  77. .hljs-selector-id,
  78. .hljs-selector-class,
  79. .hljs-selector-attr,
  80. .hljs-selector-pseudo {
  81. color: #D7BA7D;
  82. }
  83. .hljs-addition {
  84. background-color: var(--vscode-diffEditor-insertedTextBackground, rgba(155, 185, 85, 0.2));
  85. color: rgb(155, 185, 85);
  86. display: inline-block;
  87. width: 100%;
  88. }
  89. .hljs-deletion {
  90. background: var(--vscode-diffEditor-removedTextBackground, rgba(255, 0, 0, 0.2));
  91. color: rgb(255, 0, 0);
  92. display: inline-block;
  93. width: 100%;
  94. }
  95. /*
  96. From https://raw.githubusercontent.com/isagalaev/highlight.js/master/src/styles/vs.css
  97. */
  98. /*
  99. Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name>
  100. */
  101. .vscode-light .hljs-function,
  102. .vscode-light .hljs-params,
  103. .vscode-light .hljs-number,
  104. .vscode-light .hljs-class {
  105. color: inherit;
  106. }
  107. .vscode-light .hljs-comment,
  108. .vscode-light .hljs-quote,
  109. .vscode-light .hljs-number,
  110. .vscode-light .hljs-class,
  111. .vscode-light .hljs-variable {
  112. color: #008000;
  113. }
  114. .vscode-light .hljs-keyword,
  115. .vscode-light .hljs-selector-tag,
  116. .vscode-light .hljs-name,
  117. .vscode-light .hljs-tag {
  118. color: #00f;
  119. }
  120. .vscode-light .hljs-built_in,
  121. .vscode-light .hljs-builtin-name {
  122. color: #007acc;
  123. }
  124. .vscode-light .hljs-string,
  125. .vscode-light .hljs-section,
  126. .vscode-light .hljs-attribute,
  127. .vscode-light .hljs-literal,
  128. .vscode-light .hljs-template-tag,
  129. .vscode-light .hljs-template-variable,
  130. .vscode-light .hljs-type {
  131. color: #a31515;
  132. }
  133. .vscode-light .hljs-subst,
  134. .vscode-light .hljs-selector-attr,
  135. .vscode-light .hljs-selector-pseudo,
  136. .vscode-light .hljs-meta,
  137. .vscode-light .hljs-meta-keyword {
  138. color: #2b91af;
  139. }
  140. .vscode-light .hljs-title,
  141. .vscode-light .hljs-doctag {
  142. color: #808080;
  143. }
  144. .vscode-light .hljs-attr {
  145. color: #f00;
  146. }
  147. .vscode-light .hljs-symbol,
  148. .vscode-light .hljs-bullet,
  149. .vscode-light .hljs-link {
  150. color: #00b0e8;
  151. }
  152. .vscode-light .hljs-emphasis {
  153. font-style: italic;
  154. }
  155. .vscode-light .hljs-strong {
  156. font-weight: bold;
  157. }