igor.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /* Background */ .highlight-bg { background-color: #ffffff }
  2. /* PreWrapper */ .highlight-chroma { background-color: #ffffff; }
  3. /* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
  4. /* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
  5. /* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
  6. /* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
  7. /* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
  8. /* Line */ .highlight-chroma .highlight-line { display: flex; }
  9. /* Keyword */ .highlight-chroma .highlight-k { color: #0000ff }
  10. /* KeywordConstant */ .highlight-chroma .highlight-kc { color: #0000ff }
  11. /* KeywordDeclaration */ .highlight-chroma .highlight-kd { color: #0000ff }
  12. /* KeywordNamespace */ .highlight-chroma .highlight-kn { color: #0000ff }
  13. /* KeywordPseudo */ .highlight-chroma .highlight-kp { color: #0000ff }
  14. /* KeywordReserved */ .highlight-chroma .highlight-kr { color: #0000ff }
  15. /* KeywordType */ .highlight-chroma .highlight-kt { color: #0000ff }
  16. /* NameClass */ .highlight-chroma .highlight-nc { color: #007575 }
  17. /* NameDecorator */ .highlight-chroma .highlight-nd { color: #cc00a3 }
  18. /* NameFunction */ .highlight-chroma .highlight-nf { color: #c34e00 }
  19. /* LiteralString */ .highlight-chroma .highlight-s { color: #009c00 }
  20. /* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #009c00 }
  21. /* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #009c00 }
  22. /* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #009c00 }
  23. /* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #009c00 }
  24. /* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #009c00 }
  25. /* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #009c00 }
  26. /* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #009c00 }
  27. /* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #009c00 }
  28. /* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #009c00 }
  29. /* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #009c00 }
  30. /* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #009c00 }
  31. /* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #009c00 }
  32. /* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #009c00 }
  33. /* Comment */ .highlight-chroma .highlight-c { color: #ff0000; font-style: italic }
  34. /* CommentHashbang */ .highlight-chroma .highlight-ch { color: #ff0000; font-style: italic }
  35. /* CommentMultiline */ .highlight-chroma .highlight-cm { color: #ff0000; font-style: italic }
  36. /* CommentSingle */ .highlight-chroma .highlight-c1 { color: #ff0000; font-style: italic }
  37. /* CommentSpecial */ .highlight-chroma .highlight-cs { color: #ff0000; font-style: italic }
  38. /* CommentPreproc */ .highlight-chroma .highlight-cp { color: #ff0000; font-style: italic }
  39. /* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #ff0000; font-style: italic }
  40. /*
  41. Qt Creator light color scheme
  42. */
  43. .hljs {
  44. display: block;
  45. overflow-x: auto;
  46. padding: 0.5em;
  47. background: #ffffff;
  48. }
  49. .hljs,
  50. .hljs-subst,
  51. .hljs-tag,
  52. .hljs-title {
  53. color: #000000;
  54. }
  55. .hljs-strong,
  56. .hljs-emphasis {
  57. color: #000000;
  58. }
  59. .hljs-bullet,
  60. .hljs-quote,
  61. .hljs-number,
  62. .hljs-regexp,
  63. .hljs-literal {
  64. color: #000080;
  65. }
  66. .hljs-code
  67. .hljs-selector-class {
  68. color: #800080;
  69. }
  70. .hljs-emphasis,
  71. .hljs-stronge,
  72. .hljs-type {
  73. font-style: italic;
  74. }
  75. .hljs-keyword,
  76. .hljs-selector-tag,
  77. .hljs-function,
  78. .hljs-section,
  79. .hljs-symbol,
  80. .hljs-name {
  81. color: #808000;
  82. }
  83. .hljs-attribute {
  84. color: #800000;
  85. }
  86. .hljs-variable,
  87. .hljs-params,
  88. .hljs-class .hljs-title {
  89. color: #0055AF;
  90. }
  91. .hljs-string,
  92. .hljs-selector-id,
  93. .hljs-selector-attr,
  94. .hljs-selector-pseudo,
  95. .hljs-type,
  96. .hljs-built_in,
  97. .hljs-builtin-name,
  98. .hljs-template-tag,
  99. .hljs-template-variable,
  100. .hljs-addition,
  101. .hljs-link {
  102. color: #008000;
  103. }
  104. .hljs-comment,
  105. .hljs-meta,
  106. .hljs-deletion {
  107. color: #008000;
  108. }