theme-eclipse.js 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. ace.define("ace/theme/eclipse",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
  2. "use strict";
  3. exports.isDark = false;
  4. exports.cssText = ".ace-eclipse .ace_gutter {\
  5. background: #ebebeb;\
  6. border-right: 1px solid rgb(159, 159, 159);\
  7. color: rgb(136, 136, 136);\
  8. }\
  9. .ace-eclipse .ace_print-margin {\
  10. width: 1px;\
  11. background: #ebebeb;\
  12. }\
  13. .ace-eclipse {\
  14. background-color: #FFFFFF;\
  15. color: black;\
  16. }\
  17. .ace-eclipse .ace_fold {\
  18. background-color: rgb(60, 76, 114);\
  19. }\
  20. .ace-eclipse .ace_cursor {\
  21. color: black;\
  22. }\
  23. .ace-eclipse .ace_storage,\
  24. .ace-eclipse .ace_keyword,\
  25. .ace-eclipse .ace_variable {\
  26. color: rgb(127, 0, 85);\
  27. }\
  28. .ace-eclipse .ace_constant.ace_buildin {\
  29. color: rgb(88, 72, 246);\
  30. }\
  31. .ace-eclipse .ace_constant.ace_library {\
  32. color: rgb(6, 150, 14);\
  33. }\
  34. .ace-eclipse .ace_function {\
  35. color: rgb(60, 76, 114);\
  36. }\
  37. .ace-eclipse .ace_string {\
  38. color: rgb(42, 0, 255);\
  39. }\
  40. .ace-eclipse .ace_comment {\
  41. color: rgb(113, 150, 130);\
  42. }\
  43. .ace-eclipse .ace_comment.ace_doc {\
  44. color: rgb(63, 95, 191);\
  45. }\
  46. .ace-eclipse .ace_comment.ace_doc.ace_tag {\
  47. color: rgb(127, 159, 191);\
  48. }\
  49. .ace-eclipse .ace_constant.ace_numeric {\
  50. color: darkblue;\
  51. }\
  52. .ace-eclipse .ace_tag {\
  53. color: rgb(25, 118, 116);\
  54. }\
  55. .ace-eclipse .ace_type {\
  56. color: rgb(127, 0, 127);\
  57. }\
  58. .ace-eclipse .ace_xml-pe {\
  59. color: rgb(104, 104, 91);\
  60. }\
  61. .ace-eclipse .ace_marker-layer .ace_selection {\
  62. background: rgb(181, 213, 255);\
  63. }\
  64. .ace-eclipse .ace_marker-layer .ace_bracket {\
  65. margin: -1px 0 0 -1px;\
  66. border: 1px solid rgb(192, 192, 192);\
  67. }\
  68. .ace-eclipse .ace_meta.ace_tag {\
  69. color:rgb(25, 118, 116);\
  70. }\
  71. .ace-eclipse .ace_invisible {\
  72. color: #ddd;\
  73. }\
  74. .ace-eclipse .ace_entity.ace_other.ace_attribute-name {\
  75. color:rgb(127, 0, 127);\
  76. }\
  77. .ace-eclipse .ace_marker-layer .ace_step {\
  78. background: rgb(255, 255, 0);\
  79. }\
  80. .ace-eclipse .ace_active-line {\
  81. background: rgb(232, 242, 254);\
  82. }\
  83. .ace-eclipse .ace_gutter-active-line {\
  84. background-color : #DADADA;\
  85. }\
  86. .ace-eclipse .ace_marker-layer .ace_selected-word {\
  87. border: 1px solid rgb(181, 213, 255);\
  88. }\
  89. .ace-eclipse .ace_indent-guide {\
  90. background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==\") right repeat-y;\
  91. }";
  92. exports.cssClass = "ace-eclipse";
  93. var dom = require("../lib/dom");
  94. dom.importCssString(exports.cssText, exports.cssClass);
  95. });