Brak opisu
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_soft.js 2.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. border-radius: 2px\
  25. }\
  26. .ace-merbivore-soft .ace_marker-layer .ace_step {\
  27. background: rgb(102, 82, 0)\
  28. }\
  29. .ace-merbivore-soft .ace_marker-layer .ace_bracket {\
  30. margin: -1px 0 0 -1px;\
  31. border: 1px solid #404040\
  32. }\
  33. .ace-merbivore-soft .ace_marker-layer .ace_active-line {\
  34. background: #333435\
  35. }\
  36. .ace-merbivore-soft .ace_gutter-active-line {\
  37. background-color: #333435\
  38. }\
  39. .ace-merbivore-soft .ace_marker-layer .ace_selected-word {\
  40. border: 1px solid #494949\
  41. }\
  42. .ace-merbivore-soft .ace_invisible {\
  43. color: #404040\
  44. }\
  45. .ace-merbivore-soft .ace_entity.ace_name.ace_tag,\
  46. .ace-merbivore-soft .ace_keyword,\
  47. .ace-merbivore-soft .ace_meta,\
  48. .ace-merbivore-soft .ace_meta.ace_tag,\
  49. .ace-merbivore-soft .ace_storage {\
  50. color: #FC803A\
  51. }\
  52. .ace-merbivore-soft .ace_constant,\
  53. .ace-merbivore-soft .ace_constant.ace_character,\
  54. .ace-merbivore-soft .ace_constant.ace_character.ace_escape,\
  55. .ace-merbivore-soft .ace_constant.ace_other,\
  56. .ace-merbivore-soft .ace_support.ace_type {\
  57. color: #68C1D8\
  58. }\
  59. .ace-merbivore-soft .ace_constant.ace_character.ace_escape {\
  60. color: #B3E5B4\
  61. }\
  62. .ace-merbivore-soft .ace_constant.ace_language {\
  63. color: #E1C582\
  64. }\
  65. .ace-merbivore-soft .ace_constant.ace_library,\
  66. .ace-merbivore-soft .ace_string,\
  67. .ace-merbivore-soft .ace_support.ace_constant {\
  68. color: #8EC65F\
  69. }\
  70. .ace-merbivore-soft .ace_constant.ace_numeric {\
  71. color: #7FC578\
  72. }\
  73. .ace-merbivore-soft .ace_invalid,\
  74. .ace-merbivore-soft .ace_invalid.ace_deprecated {\
  75. color: #FFFFFF;\
  76. background-color: #FE3838\
  77. }\
  78. .ace-merbivore-soft .ace_fold {\
  79. background-color: #FC803A;\
  80. border-color: #E6E1DC\
  81. }\
  82. .ace-merbivore-soft .ace_comment,\
  83. .ace-merbivore-soft .ace_meta {\
  84. font-style: italic;\
  85. color: #AC4BB8\
  86. }\
  87. .ace-merbivore-soft .ace_entity.ace_other.ace_attribute-name {\
  88. color: #EAF1A3\
  89. }\
  90. .ace-merbivore-soft .ace_indent-guide {\
  91. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWOQkpLyZfD09PwPAAfYAnaStpHRAAAAAElFTkSuQmCC) right repeat-y\
  92. }";
  93. var dom = require("../lib/dom");
  94. dom.importCssString(exports.cssText, exports.cssClass);
  95. });