theme-merbivore_soft.js 2.6 KB

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