theme-tomorrow_night.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. ace.define("ace/theme/tomorrow_night",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
  2. exports.isDark = true;
  3. exports.cssClass = "ace-tomorrow-night";
  4. exports.cssText = ".ace-tomorrow-night .ace_gutter {\
  5. background: #25282c;\
  6. color: #C5C8C6\
  7. }\
  8. .ace-tomorrow-night .ace_print-margin {\
  9. width: 1px;\
  10. background: #25282c\
  11. }\
  12. .ace-tomorrow-night {\
  13. background-color: #1D1F21;\
  14. color: #C5C8C6\
  15. }\
  16. .ace-tomorrow-night .ace_cursor {\
  17. color: #AEAFAD\
  18. }\
  19. .ace-tomorrow-night .ace_marker-layer .ace_selection {\
  20. background: #373B41\
  21. }\
  22. .ace-tomorrow-night.ace_multiselect .ace_selection.ace_start {\
  23. box-shadow: 0 0 3px 0px #1D1F21;\
  24. }\
  25. .ace-tomorrow-night .ace_marker-layer .ace_step {\
  26. background: rgb(102, 82, 0)\
  27. }\
  28. .ace-tomorrow-night .ace_marker-layer .ace_bracket {\
  29. margin: -1px 0 0 -1px;\
  30. border: 1px solid #4B4E55\
  31. }\
  32. .ace-tomorrow-night .ace_marker-layer .ace_active-line {\
  33. background: #282A2E\
  34. }\
  35. .ace-tomorrow-night .ace_gutter-active-line {\
  36. background-color: #282A2E\
  37. }\
  38. .ace-tomorrow-night .ace_marker-layer .ace_selected-word {\
  39. border: 1px solid #373B41\
  40. }\
  41. .ace-tomorrow-night .ace_invisible {\
  42. color: #4B4E55\
  43. }\
  44. .ace-tomorrow-night .ace_keyword,\
  45. .ace-tomorrow-night .ace_meta,\
  46. .ace-tomorrow-night .ace_storage,\
  47. .ace-tomorrow-night .ace_storage.ace_type,\
  48. .ace-tomorrow-night .ace_support.ace_type {\
  49. color: #B294BB\
  50. }\
  51. .ace-tomorrow-night .ace_keyword.ace_operator {\
  52. color: #8ABEB7\
  53. }\
  54. .ace-tomorrow-night .ace_constant.ace_character,\
  55. .ace-tomorrow-night .ace_constant.ace_language,\
  56. .ace-tomorrow-night .ace_constant.ace_numeric,\
  57. .ace-tomorrow-night .ace_keyword.ace_other.ace_unit,\
  58. .ace-tomorrow-night .ace_support.ace_constant,\
  59. .ace-tomorrow-night .ace_variable.ace_parameter {\
  60. color: #DE935F\
  61. }\
  62. .ace-tomorrow-night .ace_constant.ace_other {\
  63. color: #CED1CF\
  64. }\
  65. .ace-tomorrow-night .ace_invalid {\
  66. color: #CED2CF;\
  67. background-color: #DF5F5F\
  68. }\
  69. .ace-tomorrow-night .ace_invalid.ace_deprecated {\
  70. color: #CED2CF;\
  71. background-color: #B798BF\
  72. }\
  73. .ace-tomorrow-night .ace_fold {\
  74. background-color: #81A2BE;\
  75. border-color: #C5C8C6\
  76. }\
  77. .ace-tomorrow-night .ace_entity.ace_name.ace_function,\
  78. .ace-tomorrow-night .ace_support.ace_function,\
  79. .ace-tomorrow-night .ace_variable {\
  80. color: #81A2BE\
  81. }\
  82. .ace-tomorrow-night .ace_support.ace_class,\
  83. .ace-tomorrow-night .ace_support.ace_type {\
  84. color: #F0C674\
  85. }\
  86. .ace-tomorrow-night .ace_heading,\
  87. .ace-tomorrow-night .ace_markup.ace_heading,\
  88. .ace-tomorrow-night .ace_string {\
  89. color: #B5BD68\
  90. }\
  91. .ace-tomorrow-night .ace_entity.ace_name.ace_tag,\
  92. .ace-tomorrow-night .ace_entity.ace_other.ace_attribute-name,\
  93. .ace-tomorrow-night .ace_meta.ace_tag,\
  94. .ace-tomorrow-night .ace_string.ace_regexp,\
  95. .ace-tomorrow-night .ace_variable {\
  96. color: #CC6666\
  97. }\
  98. .ace-tomorrow-night .ace_comment {\
  99. color: #969896\
  100. }\
  101. .ace-tomorrow-night .ace_indent-guide {\
  102. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNgYGBgYHB3d/8PAAOIAdULw8qMAAAAAElFTkSuQmCC) right repeat-y\
  103. }";
  104. var dom = require("../lib/dom");
  105. dom.importCssString(exports.cssText, exports.cssClass);
  106. });