shThemeEclipse.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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. * Eclipse IDE SyntaxHighlighter color theme
  32. * (C) Code-House
  33. * http://blog.code-house.org/2009/10/xml-i-adnotacje-kod-ogolnego-przeznaczenia-i-jpa/
  34. */
  35. .syntaxhighlighter
  36. {
  37. background-color: #fff !important;
  38. }
  39. /* Highlighed line number */
  40. .syntaxhighlighter .line.highlighted .number
  41. {
  42. background-color: #c3defe !important;
  43. }
  44. /* Highlighed line */
  45. .syntaxhighlighter .line.highlighted.alt1,
  46. .syntaxhighlighter .line.highlighted.alt2
  47. {
  48. background-color: #c3defe !important;
  49. }
  50. /* Gutter line numbers */
  51. .syntaxhighlighter .line .number
  52. {
  53. color: #787878 !important;
  54. background-color: #fff !important;
  55. }
  56. /* Add border to the lines */
  57. .syntaxhighlighter .line .content
  58. {
  59. border-left: 1px solid #d4d0c8 !important;
  60. color: #000 !important;
  61. }
  62. .syntaxhighlighter.printing .line .content
  63. {
  64. border: 0 !important;
  65. }
  66. /* First line */
  67. .syntaxhighlighter .line.alt1
  68. {
  69. background-color: #fff !important;
  70. }
  71. /* Second line */
  72. .syntaxhighlighter .line.alt2
  73. {
  74. background-color: #fff !important;
  75. }
  76. .syntaxhighlighter .toolbar
  77. {
  78. background-color: #F8F8F8 !important;
  79. border: #E7E5DC solid 1px !important;
  80. }
  81. .syntaxhighlighter .toolbar a
  82. {
  83. color: #a0a0a0 !important;
  84. }
  85. .syntaxhighlighter .toolbar a:hover
  86. {
  87. color: red !important;
  88. }
  89. /************************************
  90. * Actual syntax highlighter colors.
  91. ************************************/
  92. .syntaxhighlighter .plain,
  93. .syntaxhighlighter .plain a
  94. {
  95. color: #000 !important;
  96. }
  97. .syntaxhighlighter .comments,
  98. .syntaxhighlighter .comments a
  99. {
  100. color: #3f5fbf !important;
  101. }
  102. .syntaxhighlighter .string,
  103. .syntaxhighlighter .string a
  104. {
  105. color: #2a00ff !important;
  106. }
  107. .syntaxhighlighter .keyword
  108. {
  109. color: #7f0055 !important;
  110. font-weight: bold !important;
  111. }
  112. .syntaxhighlighter .preprocessor
  113. {
  114. color: #646464 !important;
  115. }
  116. .syntaxhighlighter .variable
  117. {
  118. color: #a70 !important;
  119. }
  120. .syntaxhighlighter .value
  121. {
  122. color: #090 !important;
  123. }
  124. .syntaxhighlighter .functions
  125. {
  126. color: #ff1493 !important;
  127. }
  128. .syntaxhighlighter .constants
  129. {
  130. color: #0066CC !important;
  131. }
  132. .syntaxhighlighter .script
  133. {
  134. background-color: yellow !important;
  135. }
  136. .syntaxhighlighter .color1,
  137. .syntaxhighlighter .color1 a
  138. {
  139. color: #808080 !important;
  140. }
  141. .syntaxhighlighter .color2,
  142. .syntaxhighlighter .color2 a
  143. {
  144. color: #ff1493 !important;
  145. }
  146. .syntaxhighlighter .color3,
  147. .syntaxhighlighter .color3 a
  148. {
  149. color: red !important;
  150. }
  151. .xml .keyword {
  152. color: #3f7f7f !important;
  153. font-weight: normal !important;
  154. }
  155. .xml .color1,
  156. .xml .color1 a{
  157. color: #7f007f !important;
  158. }
  159. .xml .string {
  160. font-style: italic !important;
  161. color: #2a00ff !important;
  162. }