1
0

shThemeDjango.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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. * Django SyntaxHighlighter theme
  32. */
  33. /************************************
  34. * Interface elements.
  35. ************************************/
  36. .syntaxhighlighter
  37. {
  38. background-color: #0B2F20 !important;
  39. }
  40. /* Gutter line numbers */
  41. .syntaxhighlighter .line .number
  42. {
  43. color: #497958 !important;
  44. }
  45. /* Add border to the lines */
  46. .syntaxhighlighter .line .content
  47. {
  48. border-left: 3px solid #41A83E !important;
  49. color: #B9BDB6 !important;
  50. }
  51. .syntaxhighlighter.printing .line .content
  52. {
  53. border: 0 !important;
  54. }
  55. /* First line */
  56. .syntaxhighlighter .line.alt1
  57. {
  58. }
  59. /* Second line */
  60. .syntaxhighlighter .line.alt2
  61. {
  62. background-color: #0a2b1d !important;
  63. }
  64. /* Highlighed line number */
  65. .syntaxhighlighter .line.highlighted .number
  66. {
  67. background-color: #336442 !important;
  68. color: #fff !important;
  69. }
  70. /* Highlighed line */
  71. .syntaxhighlighter .line.highlighted.alt1,
  72. .syntaxhighlighter .line.highlighted.alt2
  73. {
  74. background-color: #336442 !important;
  75. }
  76. .syntaxhighlighter .toolbar
  77. {
  78. background-color: #245032 !important;
  79. border: #0B2F20 solid 1px !important;
  80. }
  81. .syntaxhighlighter .toolbar a
  82. {
  83. color: #C4B14A !important;
  84. }
  85. .syntaxhighlighter .toolbar a:hover
  86. {
  87. color: #FFE862 !important;
  88. }
  89. /************************************
  90. * Actual syntax highlighter colors.
  91. ************************************/
  92. .syntaxhighlighter .plain,
  93. .syntaxhighlighter .plain a
  94. {
  95. color: #F8F8F8 !important;
  96. }
  97. .syntaxhighlighter .comments,
  98. .syntaxhighlighter .comments a
  99. {
  100. color: #336442 !important;
  101. font-style: italic !important;
  102. }
  103. .syntaxhighlighter .string,
  104. .syntaxhighlighter .string a
  105. {
  106. color: #9DF39F !important;
  107. }
  108. .syntaxhighlighter .keyword
  109. {
  110. color: #96DD3B !important;
  111. font-weight: bold !important;
  112. }
  113. .syntaxhighlighter .preprocessor
  114. {
  115. color: #91BB9E !important;
  116. }
  117. .syntaxhighlighter .variable
  118. {
  119. color: #FFAA3E !important;
  120. }
  121. .syntaxhighlighter .value
  122. {
  123. color: #F7E741 !important;
  124. }
  125. .syntaxhighlighter .functions
  126. {
  127. color: #FFAA3E !important;
  128. }
  129. .syntaxhighlighter .constants
  130. {
  131. color: #E0E8FF !important;
  132. }
  133. .syntaxhighlighter .script
  134. {
  135. background-color: #497958 !important;
  136. }
  137. .syntaxhighlighter .color1,
  138. .syntaxhighlighter .color1 a
  139. {
  140. color: #EB939A !important;
  141. }
  142. .syntaxhighlighter .color2,
  143. .syntaxhighlighter .color2 a
  144. {
  145. color: #91BB9E !important;
  146. }
  147. .syntaxhighlighter .color3,
  148. .syntaxhighlighter .color3 a
  149. {
  150. color: #EDEF7D !important;
  151. }