theme-xcode.js 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. ace.define("ace/theme/xcode",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
  2. exports.isDark = false;
  3. exports.cssClass = "ace-xcode";
  4. exports.cssText = "\
  5. .ace-xcode .ace_gutter {\
  6. background: #e8e8e8;\
  7. color: #333\
  8. }\
  9. .ace-xcode .ace_print-margin {\
  10. width: 1px;\
  11. background: #e8e8e8\
  12. }\
  13. .ace-xcode {\
  14. background-color: #FFFFFF;\
  15. color: #000000\
  16. }\
  17. .ace-xcode .ace_cursor {\
  18. color: #000000\
  19. }\
  20. .ace-xcode .ace_marker-layer .ace_selection {\
  21. background: #B5D5FF\
  22. }\
  23. .ace-xcode.ace_multiselect .ace_selection.ace_start {\
  24. box-shadow: 0 0 3px 0px #FFFFFF;\
  25. }\
  26. .ace-xcode .ace_marker-layer .ace_step {\
  27. background: rgb(198, 219, 174)\
  28. }\
  29. .ace-xcode .ace_marker-layer .ace_bracket {\
  30. margin: -1px 0 0 -1px;\
  31. border: 1px solid #BFBFBF\
  32. }\
  33. .ace-xcode .ace_marker-layer .ace_active-line {\
  34. background: rgba(0, 0, 0, 0.071)\
  35. }\
  36. .ace-xcode .ace_gutter-active-line {\
  37. background-color: rgba(0, 0, 0, 0.071)\
  38. }\
  39. .ace-xcode .ace_marker-layer .ace_selected-word {\
  40. border: 1px solid #B5D5FF\
  41. }\
  42. .ace-xcode .ace_constant.ace_language,\
  43. .ace-xcode .ace_keyword,\
  44. .ace-xcode .ace_meta,\
  45. .ace-xcode .ace_variable.ace_language {\
  46. color: #C800A4\
  47. }\
  48. .ace-xcode .ace_invisible {\
  49. color: #BFBFBF\
  50. }\
  51. .ace-xcode .ace_constant.ace_character,\
  52. .ace-xcode .ace_constant.ace_other {\
  53. color: #275A5E\
  54. }\
  55. .ace-xcode .ace_constant.ace_numeric {\
  56. color: #3A00DC\
  57. }\
  58. .ace-xcode .ace_entity.ace_other.ace_attribute-name,\
  59. .ace-xcode .ace_support.ace_constant,\
  60. .ace-xcode .ace_support.ace_function {\
  61. color: #450084\
  62. }\
  63. .ace-xcode .ace_fold {\
  64. background-color: #C800A4;\
  65. border-color: #000000\
  66. }\
  67. .ace-xcode .ace_entity.ace_name.ace_tag,\
  68. .ace-xcode .ace_support.ace_class,\
  69. .ace-xcode .ace_support.ace_type {\
  70. color: #790EAD\
  71. }\
  72. .ace-xcode .ace_storage {\
  73. color: #C900A4\
  74. }\
  75. .ace-xcode .ace_string {\
  76. color: #DF0002\
  77. }\
  78. .ace-xcode .ace_comment {\
  79. color: #008E00\
  80. }\
  81. .ace-xcode .ace_indent-guide {\
  82. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==) right repeat-y\
  83. }";
  84. var dom = require("../lib/dom");
  85. dom.importCssString(exports.cssText, exports.cssClass);
  86. });