vs.css 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /* Background */ .highlight-bg { background-color: #ffffff }
  2. /* PreWrapper */ .highlight-chroma { background-color: #ffffff; }
  3. /* Error */ .highlight-chroma .highlight-err { }
  4. /* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
  5. /* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
  6. /* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
  7. /* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
  8. /* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
  9. /* Line */ .highlight-chroma .highlight-line { display: flex; }
  10. /* Keyword */ .highlight-chroma .highlight-k { color: #0000ff }
  11. /* KeywordConstant */ .highlight-chroma .highlight-kc { color: #0000ff }
  12. /* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #0000ff }
  13. /* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #0000ff }
  14. /* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #0000ff }
  15. /* KeywordReserved */ .highlight-chroma .highlight-kr { color: #0000ff }
  16. /* KeywordType */ .highlight-chroma .highlight-kt { color: #2b91af }
  17. /* NameClass */ .highlight-chroma .highlight-nc { color: #2b91af }
  18. /* LiteralString */ .highlight-chroma .highlight-s { color: #a31515 }
  19. /* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #a31515 }
  20. /* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #a31515 }
  21. /* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #a31515 }
  22. /* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #a31515 }
  23. /* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #a31515 }
  24. /* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #a31515 }
  25. /* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #a31515 }
  26. /* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #a31515 }
  27. /* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #a31515 }
  28. /* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #a31515 }
  29. /* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #a31515 }
  30. /* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #a31515 }
  31. /* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #a31515 }
  32. /* OperatorWord */ .highlight-chroma .highlight-ow { color: #0000ff }
  33. /* Comment */ .highlight-chroma .highlight-c { color: #008000 }
  34. /* CommentHashbang */ .highlight-chroma .highlight-ch { color: #008000 }
  35. /* CommentMultiline */ .highlight-chroma .highlight-cm { color: #008000 }
  36. /* CommentSingle */ .highlight-chroma .highlight-c1 { color: #008000 }
  37. /* CommentSpecial */ .highlight-chroma .highlight-cs { color: #008000 }
  38. /* CommentPreproc */ .highlight-chroma .highlight-cp { color: #0000ff }
  39. /* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #0000ff }
  40. /* GenericEmph */ .highlight-chroma .highlight-ge { font-style: italic }
  41. /* GenericHeading */ .highlight-chroma .highlight-gh { font-weight: bold }
  42. /* GenericPrompt */ .highlight-chroma .highlight-gp { font-weight: bold }
  43. /* GenericStrong */ .highlight-chroma .highlight-gs { font-weight: bold }
  44. /* GenericSubheading */ .highlight-chroma .highlight-gu { font-weight: bold }
  45. /*
  46. Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name>
  47. */
  48. .hljs {
  49. display: block;
  50. overflow-x: auto;
  51. padding: 0.5em;
  52. background: white;
  53. color: black;
  54. }
  55. .hljs-comment,
  56. .hljs-quote,
  57. .hljs-variable {
  58. color: #008000;
  59. }
  60. .hljs-keyword,
  61. .hljs-selector-tag,
  62. .hljs-built_in,
  63. .hljs-name,
  64. .hljs-tag {
  65. color: #00f;
  66. }
  67. .hljs-string,
  68. .hljs-title,
  69. .hljs-section,
  70. .hljs-attribute,
  71. .hljs-literal,
  72. .hljs-template-tag,
  73. .hljs-template-variable,
  74. .hljs-type,
  75. .hljs-addition {
  76. color: #a31515;
  77. }
  78. .hljs-deletion,
  79. .hljs-selector-attr,
  80. .hljs-selector-pseudo,
  81. .hljs-meta {
  82. color: #2b91af;
  83. }
  84. .hljs-doctag {
  85. color: #808080;
  86. }
  87. .hljs-attr {
  88. color: #f00;
  89. }
  90. .hljs-symbol,
  91. .hljs-bullet,
  92. .hljs-link {
  93. color: #00b0e8;
  94. }
  95. .hljs-emphasis {
  96. font-style: italic;
  97. }
  98. .hljs-strong {
  99. font-weight: bold;
  100. }