shThemeRDark.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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. * RDark SyntaxHighlighter theme based on theme by Radu Dineiu
  32. * http://www.vim.org/scripts/script.php?script_id=1732
  33. */
  34. /************************************
  35. * Interface elements.
  36. ************************************/
  37. .syntaxhighlighter
  38. {
  39. background-color: #1B2426 !important;
  40. }
  41. /* Gutter line numbers */
  42. .syntaxhighlighter .line .number
  43. {
  44. color: #B9BDB6 !important;
  45. }
  46. /* Add border to the lines */
  47. .syntaxhighlighter .line .content
  48. {
  49. border-left: 3px solid #435A5F !important;
  50. color: #B9BDB6 !important;
  51. }
  52. .syntaxhighlighter.printing .line .content
  53. {
  54. border: 0 !important;
  55. }
  56. /* First line */
  57. .syntaxhighlighter .line.alt1
  58. {
  59. background-color: #1B2426 !important;
  60. }
  61. /* Second line */
  62. .syntaxhighlighter .line.alt2
  63. {
  64. background-color: #1B2426 !important;
  65. }
  66. /* Highlighed line number */
  67. .syntaxhighlighter .line.highlighted .number
  68. {
  69. background-color: #435A5F !important;
  70. color: #fff !important;
  71. }
  72. /* Highlighed line */
  73. .syntaxhighlighter .line.highlighted.alt1,
  74. .syntaxhighlighter .line.highlighted.alt2
  75. {
  76. background-color: #435A5F !important;
  77. }
  78. .syntaxhighlighter .toolbar
  79. {
  80. background-color: #1B2426 !important;
  81. }
  82. .syntaxhighlighter .toolbar a
  83. {
  84. color: #646763 !important;
  85. }
  86. .syntaxhighlighter .toolbar a:hover
  87. {
  88. color: #E0E8FF !important;
  89. }
  90. /************************************
  91. * Actual syntax highlighter colors.
  92. ************************************/
  93. .syntaxhighlighter .plain,
  94. .syntaxhighlighter .plain a
  95. {
  96. color: #B9BDB6 !important;
  97. }
  98. .syntaxhighlighter .comments,
  99. .syntaxhighlighter .comments a
  100. {
  101. color: #878A85 !important;
  102. }
  103. .syntaxhighlighter .string,
  104. .syntaxhighlighter .string a
  105. {
  106. color: #5CE638 !important;
  107. }
  108. .syntaxhighlighter .keyword
  109. {
  110. color: #5BA1CF !important;
  111. }
  112. .syntaxhighlighter .preprocessor
  113. {
  114. color: #435A5F !important;
  115. }
  116. .syntaxhighlighter .variable
  117. {
  118. color: #FFAA3E !important;
  119. }
  120. .syntaxhighlighter .value
  121. {
  122. color: #090 !important;
  123. }
  124. .syntaxhighlighter .functions
  125. {
  126. color: #FFAA3E !important;
  127. }
  128. .syntaxhighlighter .constants
  129. {
  130. color: #E0E8FF !important;
  131. }
  132. .syntaxhighlighter .script
  133. {
  134. background-color: #435A5F !important;
  135. }
  136. .syntaxhighlighter .color1,
  137. .syntaxhighlighter .color1 a
  138. {
  139. color: #E0E8FF !important;
  140. }
  141. .syntaxhighlighter .color2,
  142. .syntaxhighlighter .color2 a
  143. {
  144. color: #FFFFFF !important;
  145. }
  146. .syntaxhighlighter .color3,
  147. .syntaxhighlighter .color3 a
  148. {
  149. color: #FFAA3E !important;
  150. }