quarto-syntax-highlighting.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. /* quarto syntax highlight colors */
  2. :root {
  3. --quarto-hl-ot-color: #003B4F;
  4. --quarto-hl-at-color: #657422;
  5. --quarto-hl-ss-color: #20794D;
  6. --quarto-hl-an-color: #5E5E5E;
  7. --quarto-hl-fu-color: #4758AB;
  8. --quarto-hl-st-color: #20794D;
  9. --quarto-hl-cf-color: #003B4F;
  10. --quarto-hl-op-color: #5E5E5E;
  11. --quarto-hl-er-color: #AD0000;
  12. --quarto-hl-bn-color: #AD0000;
  13. --quarto-hl-al-color: #AD0000;
  14. --quarto-hl-va-color: #111111;
  15. --quarto-hl-bu-color: inherit;
  16. --quarto-hl-ex-color: inherit;
  17. --quarto-hl-pp-color: #AD0000;
  18. --quarto-hl-in-color: #5E5E5E;
  19. --quarto-hl-vs-color: #20794D;
  20. --quarto-hl-wa-color: #5E5E5E;
  21. --quarto-hl-do-color: #5E5E5E;
  22. --quarto-hl-im-color: #00769E;
  23. --quarto-hl-ch-color: #20794D;
  24. --quarto-hl-dt-color: #AD0000;
  25. --quarto-hl-fl-color: #AD0000;
  26. --quarto-hl-co-color: #5E5E5E;
  27. --quarto-hl-cv-color: #5E5E5E;
  28. --quarto-hl-cn-color: #8f5902;
  29. --quarto-hl-sc-color: #5E5E5E;
  30. --quarto-hl-dv-color: #AD0000;
  31. --quarto-hl-kw-color: #003B4F;
  32. }
  33. /* other quarto variables */
  34. :root {
  35. --quarto-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  36. }
  37. pre > code.sourceCode > span {
  38. color: #003B4F;
  39. }
  40. code span {
  41. color: #003B4F;
  42. }
  43. code.sourceCode > span {
  44. color: #003B4F;
  45. }
  46. div.sourceCode,
  47. div.sourceCode pre.sourceCode {
  48. color: #003B4F;
  49. }
  50. code span.ot {
  51. color: #003B4F;
  52. font-style: inherit;
  53. }
  54. code span.at {
  55. color: #657422;
  56. font-style: inherit;
  57. }
  58. code span.ss {
  59. color: #20794D;
  60. font-style: inherit;
  61. }
  62. code span.an {
  63. color: #5E5E5E;
  64. font-style: inherit;
  65. }
  66. code span.fu {
  67. color: #4758AB;
  68. font-style: inherit;
  69. }
  70. code span.st {
  71. color: #20794D;
  72. font-style: inherit;
  73. }
  74. code span.cf {
  75. color: #003B4F;
  76. font-style: inherit;
  77. }
  78. code span.op {
  79. color: #5E5E5E;
  80. font-style: inherit;
  81. }
  82. code span.er {
  83. color: #AD0000;
  84. font-style: inherit;
  85. }
  86. code span.bn {
  87. color: #AD0000;
  88. font-style: inherit;
  89. }
  90. code span.al {
  91. color: #AD0000;
  92. font-style: inherit;
  93. }
  94. code span.va {
  95. color: #111111;
  96. font-style: inherit;
  97. }
  98. code span.bu {
  99. font-style: inherit;
  100. }
  101. code span.ex {
  102. font-style: inherit;
  103. }
  104. code span.pp {
  105. color: #AD0000;
  106. font-style: inherit;
  107. }
  108. code span.in {
  109. color: #5E5E5E;
  110. font-style: inherit;
  111. }
  112. code span.vs {
  113. color: #20794D;
  114. font-style: inherit;
  115. }
  116. code span.wa {
  117. color: #5E5E5E;
  118. font-style: italic;
  119. }
  120. code span.do {
  121. color: #5E5E5E;
  122. font-style: italic;
  123. }
  124. code span.im {
  125. color: #00769E;
  126. font-style: inherit;
  127. }
  128. code span.ch {
  129. color: #20794D;
  130. font-style: inherit;
  131. }
  132. code span.dt {
  133. color: #AD0000;
  134. font-style: inherit;
  135. }
  136. code span.fl {
  137. color: #AD0000;
  138. font-style: inherit;
  139. }
  140. code span.co {
  141. color: #5E5E5E;
  142. font-style: inherit;
  143. }
  144. code span.cv {
  145. color: #5E5E5E;
  146. font-style: italic;
  147. }
  148. code span.cn {
  149. color: #8f5902;
  150. font-style: inherit;
  151. }
  152. code span.sc {
  153. color: #5E5E5E;
  154. font-style: inherit;
  155. }
  156. code span.dv {
  157. color: #AD0000;
  158. font-style: inherit;
  159. }
  160. code span.kw {
  161. color: #003B4F;
  162. font-style: inherit;
  163. }
  164. .prevent-inlining {
  165. content: "</";
  166. }
  167. /*# sourceMappingURL=debc5d5d77c3f9108843748ff7464032.css.map */