暫無描述
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-merbivore.js 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. ace.define("ace/theme/merbivore",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
  2. exports.isDark = true;
  3. exports.cssClass = "ace-merbivore";
  4. exports.cssText = ".ace-merbivore .ace_gutter {\
  5. background: #202020;\
  6. color: #E6E1DC\
  7. }\
  8. .ace-merbivore .ace_print-margin {\
  9. width: 1px;\
  10. background: #555651\
  11. }\
  12. .ace-merbivore {\
  13. background-color: #161616;\
  14. color: #E6E1DC\
  15. }\
  16. .ace-merbivore .ace_cursor {\
  17. color: #FFFFFF\
  18. }\
  19. .ace-merbivore .ace_marker-layer .ace_selection {\
  20. background: #454545\
  21. }\
  22. .ace-merbivore.ace_multiselect .ace_selection.ace_start {\
  23. box-shadow: 0 0 3px 0px #161616;\
  24. border-radius: 2px\
  25. }\
  26. .ace-merbivore .ace_marker-layer .ace_step {\
  27. background: rgb(102, 82, 0)\
  28. }\
  29. .ace-merbivore .ace_marker-layer .ace_bracket {\
  30. margin: -1px 0 0 -1px;\
  31. border: 1px solid #404040\
  32. }\
  33. .ace-merbivore .ace_marker-layer .ace_active-line {\
  34. background: #333435\
  35. }\
  36. .ace-merbivore .ace_gutter-active-line {\
  37. background-color: #333435\
  38. }\
  39. .ace-merbivore .ace_marker-layer .ace_selected-word {\
  40. border: 1px solid #454545\
  41. }\
  42. .ace-merbivore .ace_invisible {\
  43. color: #404040\
  44. }\
  45. .ace-merbivore .ace_entity.ace_name.ace_tag,\
  46. .ace-merbivore .ace_keyword,\
  47. .ace-merbivore .ace_meta,\
  48. .ace-merbivore .ace_meta.ace_tag,\
  49. .ace-merbivore .ace_storage,\
  50. .ace-merbivore .ace_support.ace_function {\
  51. color: #FC6F09\
  52. }\
  53. .ace-merbivore .ace_constant,\
  54. .ace-merbivore .ace_constant.ace_character,\
  55. .ace-merbivore .ace_constant.ace_character.ace_escape,\
  56. .ace-merbivore .ace_constant.ace_other,\
  57. .ace-merbivore .ace_support.ace_type {\
  58. color: #1EDAFB\
  59. }\
  60. .ace-merbivore .ace_constant.ace_character.ace_escape {\
  61. color: #519F50\
  62. }\
  63. .ace-merbivore .ace_constant.ace_language {\
  64. color: #FDC251\
  65. }\
  66. .ace-merbivore .ace_constant.ace_library,\
  67. .ace-merbivore .ace_string,\
  68. .ace-merbivore .ace_support.ace_constant {\
  69. color: #8DFF0A\
  70. }\
  71. .ace-merbivore .ace_constant.ace_numeric {\
  72. color: #58C554\
  73. }\
  74. .ace-merbivore .ace_invalid {\
  75. color: #FFFFFF;\
  76. background-color: #990000\
  77. }\
  78. .ace-merbivore .ace_fold {\
  79. background-color: #FC6F09;\
  80. border-color: #E6E1DC\
  81. }\
  82. .ace-merbivore .ace_comment {\
  83. font-style: italic;\
  84. color: #AD2EA4\
  85. }\
  86. .ace-merbivore .ace_entity.ace_other.ace_attribute-name {\
  87. color: #FFFF89\
  88. }\
  89. .ace-merbivore .ace_indent-guide {\
  90. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWMQFxf3ZXB1df0PAAdsAmERTkEHAAAAAElFTkSuQmCC) right repeat-y\
  91. }";
  92. var dom = require("../lib/dom");
  93. dom.importCssString(exports.cssText, exports.cssClass);
  94. });