Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

theme-xcode.js 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. border-radius: 2px\
  26. }\
  27. .ace-xcode .ace_marker-layer .ace_step {\
  28. background: rgb(198, 219, 174)\
  29. }\
  30. .ace-xcode .ace_marker-layer .ace_bracket {\
  31. margin: -1px 0 0 -1px;\
  32. border: 1px solid #BFBFBF\
  33. }\
  34. .ace-xcode .ace_marker-layer .ace_active-line {\
  35. background: rgba(0, 0, 0, 0.071)\
  36. }\
  37. .ace-xcode .ace_gutter-active-line {\
  38. background-color: rgba(0, 0, 0, 0.071)\
  39. }\
  40. .ace-xcode .ace_marker-layer .ace_selected-word {\
  41. border: 1px solid #B5D5FF\
  42. }\
  43. .ace-xcode .ace_constant.ace_language,\
  44. .ace-xcode .ace_keyword,\
  45. .ace-xcode .ace_meta,\
  46. .ace-xcode .ace_variable.ace_language {\
  47. color: #C800A4\
  48. }\
  49. .ace-xcode .ace_invisible {\
  50. color: #BFBFBF\
  51. }\
  52. .ace-xcode .ace_constant.ace_character,\
  53. .ace-xcode .ace_constant.ace_other {\
  54. color: #275A5E\
  55. }\
  56. .ace-xcode .ace_constant.ace_numeric {\
  57. color: #3A00DC\
  58. }\
  59. .ace-xcode .ace_entity.ace_other.ace_attribute-name,\
  60. .ace-xcode .ace_support.ace_constant,\
  61. .ace-xcode .ace_support.ace_function {\
  62. color: #450084\
  63. }\
  64. .ace-xcode .ace_fold {\
  65. background-color: #C800A4;\
  66. border-color: #000000\
  67. }\
  68. .ace-xcode .ace_entity.ace_name.ace_tag,\
  69. .ace-xcode .ace_support.ace_class,\
  70. .ace-xcode .ace_support.ace_type {\
  71. color: #790EAD\
  72. }\
  73. .ace-xcode .ace_storage {\
  74. color: #C900A4\
  75. }\
  76. .ace-xcode .ace_string {\
  77. color: #DF0002\
  78. }\
  79. .ace-xcode .ace_comment {\
  80. color: #008E00\
  81. }\
  82. .ace-xcode .ace_indent-guide {\
  83. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==) right repeat-y\
  84. }";
  85. var dom = require("../lib/dom");
  86. dom.importCssString(exports.cssText, exports.cssClass);
  87. });