theme-clouds-uncompressed.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /* ***** BEGIN LICENSE BLOCK *****
  2. * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3. *
  4. * The contents of this file are subject to the Mozilla Public License Version
  5. * 1.1 (the "License"); you may not use this file except in compliance with
  6. * the License. You may obtain a copy of the License at
  7. * http://www.mozilla.org/MPL/
  8. *
  9. * Software distributed under the License is distributed on an "AS IS" basis,
  10. * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11. * for the specific language governing rights and limitations under the
  12. * License.
  13. *
  14. * The Original Code is Ajax.org Code Editor (ACE).
  15. *
  16. * The Initial Developer of the Original Code is
  17. * Ajax.org B.V.
  18. * Portions created by the Initial Developer are Copyright (C) 2010
  19. * the Initial Developer. All Rights Reserved.
  20. *
  21. * Contributor(s):
  22. * Fabian Jakobs <fabian AT ajax DOT org>
  23. *
  24. * Alternatively, the contents of this file may be used under the terms of
  25. * either the GNU General Public License Version 2 or later (the "GPL"), or
  26. * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27. * in which case the provisions of the GPL or the LGPL are applicable instead
  28. * of those above. If you wish to allow use of your version of this file only
  29. * under the terms of either the GPL or the LGPL, and not to allow others to
  30. * use your version of this file under the terms of the MPL, indicate your
  31. * decision by deleting the provisions above and replace them with the notice
  32. * and other provisions required by the GPL or the LGPL. If you do not delete
  33. * the provisions above, a recipient may use your version of this file under
  34. * the terms of any one of the MPL, the GPL or the LGPL.
  35. *
  36. * ***** END LICENSE BLOCK ***** */
  37. define('ace/theme/clouds', ['require', 'exports', 'module' , 'ace/lib/dom'], function(require, exports, module) {
  38. exports.isDark = false;
  39. exports.cssClass = "ace-clouds";
  40. exports.cssText = "\
  41. .ace-clouds .ace_editor {\
  42. border: 2px solid rgb(159, 159, 159);\
  43. }\
  44. \
  45. .ace-clouds .ace_editor.ace_focus {\
  46. border: 2px solid #327fbd;\
  47. }\
  48. \
  49. .ace-clouds .ace_gutter {\
  50. background: #e8e8e8;\
  51. color: #333;\
  52. }\
  53. \
  54. .ace-clouds .ace_print_margin {\
  55. width: 1px;\
  56. background: #e8e8e8;\
  57. }\
  58. \
  59. .ace-clouds .ace_scroller {\
  60. background-color: #FFFFFF;\
  61. }\
  62. \
  63. .ace-clouds .ace_text-layer {\
  64. cursor: text;\
  65. color: #000000;\
  66. }\
  67. \
  68. .ace-clouds .ace_cursor {\
  69. border-left: 1px solid #000000;\
  70. }\
  71. \
  72. .ace-clouds .ace_cursor.ace_overwrite {\
  73. border-left: 0px;\
  74. border-bottom: 1px solid #000000;\
  75. }\
  76. \
  77. .ace-clouds .ace_marker-layer .ace_selection {\
  78. background: #BDD5FC;\
  79. }\
  80. \
  81. .ace-clouds .ace_marker-layer .ace_step {\
  82. background: rgb(198, 219, 174);\
  83. }\
  84. \
  85. .ace-clouds .ace_marker-layer .ace_bracket {\
  86. margin: -1px 0 0 -1px;\
  87. border: 1px solid #BFBFBF;\
  88. }\
  89. \
  90. .ace-clouds .ace_marker-layer .ace_active_line {\
  91. background: #FFFBD1;\
  92. }\
  93. \
  94. .ace-clouds .ace_marker-layer .ace_selected_word {\
  95. border: 1px solid #BDD5FC;\
  96. }\
  97. \
  98. .ace-clouds .ace_invisible {\
  99. color: #BFBFBF;\
  100. }\
  101. \
  102. .ace-clouds .ace_keyword, .ace-clouds .ace_meta {\
  103. color:#AF956F;\
  104. }\
  105. \
  106. .ace-clouds .ace_keyword.ace_operator {\
  107. color:#484848;\
  108. }\
  109. \
  110. .ace-clouds .ace_constant.ace_language {\
  111. color:#39946A;\
  112. }\
  113. \
  114. .ace-clouds .ace_constant.ace_numeric {\
  115. color:#46A609;\
  116. }\
  117. \
  118. .ace-clouds .ace_invalid {\
  119. background-color:#FF002A;\
  120. }\
  121. \
  122. .ace-clouds .ace_fold {\
  123. background-color: #AF956F;\
  124. border-color: #000000;\
  125. }\
  126. \
  127. .ace-clouds .ace_support.ace_function {\
  128. color:#C52727;\
  129. }\
  130. \
  131. .ace-clouds .ace_storage {\
  132. color:#C52727;\
  133. }\
  134. \
  135. .ace-clouds .ace_string {\
  136. color:#5D90CD;\
  137. }\
  138. \
  139. .ace-clouds .ace_comment {\
  140. color:#BCC8BA;\
  141. }\
  142. \
  143. .ace-clouds .ace_entity.ace_other.ace_attribute-name {\
  144. color:#606060;\
  145. }\
  146. \
  147. .ace-clouds .ace_markup.ace_underline {\
  148. text-decoration:underline;\
  149. }";
  150. var dom = require("../lib/dom");
  151. dom.importCssString(exports.cssText, exports.cssClass);
  152. });