shThemeDefault.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /**
  2. * SyntaxHighlighter
  3. * http://alexgorbatchev.com/
  4. *
  5. * SyntaxHighlighter is donationware. If you are using it, please donate.
  6. * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate
  7. *
  8. * @version
  9. * 2.1.364 (October 15 2009)
  10. *
  11. * @copyright
  12. * Copyright (C) 2004-2009 Alex Gorbatchev.
  13. *
  14. * @license
  15. * This file is part of SyntaxHighlighter.
  16. *
  17. * SyntaxHighlighter is free software: you can redistribute it and/or modify
  18. * it under the terms of the GNU Lesser General Public License as published by
  19. * the Free Software Foundation, either version 3 of the License, or
  20. * (at your option) any later version.
  21. *
  22. * SyntaxHighlighter is distributed in the hope that it will be useful,
  23. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. * GNU General Public License for more details.
  26. *
  27. * You should have received a copy of the GNU General Public License
  28. * along with SyntaxHighlighter. If not, see <http://www.gnu.org/copyleft/lesser.html>.
  29. */
  30. /************************************
  31. * Default Syntax Highlighter theme.
  32. *
  33. * Interface elements.
  34. ************************************/
  35. .syntaxhighlighter
  36. {
  37. background-color: #fff !important;
  38. }
  39. /* Highlighed line number */
  40. .syntaxhighlighter .line.highlighted .number
  41. {
  42. color: black !important;
  43. }
  44. /* Highlighed line */
  45. .syntaxhighlighter .line.highlighted.alt1,
  46. .syntaxhighlighter .line.highlighted.alt2
  47. {
  48. background-color: #e0e0e0 !important;
  49. }
  50. /* Gutter line numbers */
  51. .syntaxhighlighter .line .number
  52. {
  53. color: #afafaf !important;
  54. }
  55. /* Add border to the lines */
  56. .syntaxhighlighter .line .content
  57. {
  58. border-left: 3px solid #6CE26C !important;
  59. color: #000 !important;
  60. }
  61. .syntaxhighlighter.printing .line .content
  62. {
  63. border: 0 !important;
  64. }
  65. /* First line */
  66. .syntaxhighlighter .line.alt1
  67. {
  68. background-color: #fff !important;
  69. }
  70. /* Second line */
  71. .syntaxhighlighter .line.alt2
  72. {
  73. background-color: #F8F8F8 !important;
  74. }
  75. .syntaxhighlighter .toolbar
  76. {
  77. background-color: #F8F8F8 !important;
  78. border: #E7E5DC solid 1px !important;
  79. }
  80. .syntaxhighlighter .toolbar a
  81. {
  82. color: #a0a0a0 !important;
  83. }
  84. .syntaxhighlighter .toolbar a:hover
  85. {
  86. color: red !important;
  87. }
  88. /************************************
  89. * Actual syntax highlighter colors.
  90. ************************************/
  91. .syntaxhighlighter .plain,
  92. .syntaxhighlighter .plain a
  93. {
  94. color: #000 !important;
  95. }
  96. .syntaxhighlighter .comments,
  97. .syntaxhighlighter .comments a
  98. {
  99. color: #008200 !important;
  100. }
  101. .syntaxhighlighter .string,
  102. .syntaxhighlighter .string a
  103. {
  104. color: blue !important;
  105. }
  106. .syntaxhighlighter .keyword
  107. {
  108. color: #069 !important;
  109. font-weight: bold !important;
  110. }
  111. .syntaxhighlighter .preprocessor
  112. {
  113. color: gray !important;
  114. }
  115. .syntaxhighlighter .variable
  116. {
  117. color: #a70 !important;
  118. }
  119. .syntaxhighlighter .value
  120. {
  121. color: #090 !important;
  122. }
  123. .syntaxhighlighter .functions
  124. {
  125. color: #ff1493 !important;
  126. }
  127. .syntaxhighlighter .constants
  128. {
  129. color: #0066CC !important;
  130. }
  131. .syntaxhighlighter .script
  132. {
  133. background-color: yellow !important;
  134. }
  135. .syntaxhighlighter .color1,
  136. .syntaxhighlighter .color1 a
  137. {
  138. color: #808080 !important;
  139. }
  140. .syntaxhighlighter .color2,
  141. .syntaxhighlighter .color2 a
  142. {
  143. color: #ff1493 !important;
  144. }
  145. .syntaxhighlighter .color3,
  146. .syntaxhighlighter .color3 a
  147. {
  148. color: red !important;
  149. }