theme-crimson_editor.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. ace.define("ace/theme/crimson_editor",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
  2. exports.isDark = false;
  3. exports.cssText = ".ace-crimson-editor .ace_gutter {\
  4. background: #ebebeb;\
  5. color: #333;\
  6. overflow : hidden;\
  7. }\
  8. .ace-crimson-editor .ace_gutter-layer {\
  9. width: 100%;\
  10. text-align: right;\
  11. }\
  12. .ace-crimson-editor .ace_print-margin {\
  13. width: 1px;\
  14. background: #e8e8e8;\
  15. }\
  16. .ace-crimson-editor {\
  17. background-color: #FFFFFF;\
  18. color: rgb(64, 64, 64);\
  19. }\
  20. .ace-crimson-editor .ace_cursor {\
  21. color: black;\
  22. }\
  23. .ace-crimson-editor .ace_invisible {\
  24. color: rgb(191, 191, 191);\
  25. }\
  26. .ace-crimson-editor .ace_identifier {\
  27. color: black;\
  28. }\
  29. .ace-crimson-editor .ace_keyword {\
  30. color: blue;\
  31. }\
  32. .ace-crimson-editor .ace_constant.ace_buildin {\
  33. color: rgb(88, 72, 246);\
  34. }\
  35. .ace-crimson-editor .ace_constant.ace_language {\
  36. color: rgb(255, 156, 0);\
  37. }\
  38. .ace-crimson-editor .ace_constant.ace_library {\
  39. color: rgb(6, 150, 14);\
  40. }\
  41. .ace-crimson-editor .ace_invalid {\
  42. text-decoration: line-through;\
  43. color: rgb(224, 0, 0);\
  44. }\
  45. .ace-crimson-editor .ace_fold {\
  46. }\
  47. .ace-crimson-editor .ace_support.ace_function {\
  48. color: rgb(192, 0, 0);\
  49. }\
  50. .ace-crimson-editor .ace_support.ace_constant {\
  51. color: rgb(6, 150, 14);\
  52. }\
  53. .ace-crimson-editor .ace_support.ace_type,\
  54. .ace-crimson-editor .ace_support.ace_class {\
  55. color: rgb(109, 121, 222);\
  56. }\
  57. .ace-crimson-editor .ace_keyword.ace_operator {\
  58. color: rgb(49, 132, 149);\
  59. }\
  60. .ace-crimson-editor .ace_string {\
  61. color: rgb(128, 0, 128);\
  62. }\
  63. .ace-crimson-editor .ace_comment {\
  64. color: rgb(76, 136, 107);\
  65. }\
  66. .ace-crimson-editor .ace_comment.ace_doc {\
  67. color: rgb(0, 102, 255);\
  68. }\
  69. .ace-crimson-editor .ace_comment.ace_doc.ace_tag {\
  70. color: rgb(128, 159, 191);\
  71. }\
  72. .ace-crimson-editor .ace_constant.ace_numeric {\
  73. color: rgb(0, 0, 64);\
  74. }\
  75. .ace-crimson-editor .ace_variable {\
  76. color: rgb(0, 64, 128);\
  77. }\
  78. .ace-crimson-editor .ace_xml-pe {\
  79. color: rgb(104, 104, 91);\
  80. }\
  81. .ace-crimson-editor .ace_marker-layer .ace_selection {\
  82. background: rgb(181, 213, 255);\
  83. }\
  84. .ace-crimson-editor .ace_marker-layer .ace_step {\
  85. background: rgb(252, 255, 0);\
  86. }\
  87. .ace-crimson-editor .ace_marker-layer .ace_stack {\
  88. background: rgb(164, 229, 101);\
  89. }\
  90. .ace-crimson-editor .ace_marker-layer .ace_bracket {\
  91. margin: -1px 0 0 -1px;\
  92. border: 1px solid rgb(192, 192, 192);\
  93. }\
  94. .ace-crimson-editor .ace_marker-layer .ace_active-line {\
  95. background: rgb(232, 242, 254);\
  96. }\
  97. .ace-crimson-editor .ace_gutter-active-line {\
  98. background-color : #dcdcdc;\
  99. }\
  100. .ace-crimson-editor .ace_meta.ace_tag {\
  101. color:rgb(28, 2, 255);\
  102. }\
  103. .ace-crimson-editor .ace_marker-layer .ace_selected-word {\
  104. background: rgb(250, 250, 255);\
  105. border: 1px solid rgb(200, 200, 250);\
  106. }\
  107. .ace-crimson-editor .ace_string.ace_regex {\
  108. color: rgb(192, 0, 192);\
  109. }\
  110. .ace-crimson-editor .ace_indent-guide {\
  111. background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==\") right repeat-y;\
  112. }";
  113. exports.cssClass = "ace-crimson-editor";
  114. var dom = require("../lib/dom");
  115. dom.importCssString(exports.cssText, exports.cssClass);
  116. });