No Description
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-tomorrow_night.js 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. border-radius: 2px\
  25. }\
  26. .ace-tomorrow-night .ace_marker-layer .ace_step {\
  27. background: rgb(102, 82, 0)\
  28. }\
  29. .ace-tomorrow-night .ace_marker-layer .ace_bracket {\
  30. margin: -1px 0 0 -1px;\
  31. border: 1px solid #4B4E55\
  32. }\
  33. .ace-tomorrow-night .ace_marker-layer .ace_active-line {\
  34. background: #282A2E\
  35. }\
  36. .ace-tomorrow-night .ace_gutter-active-line {\
  37. background-color: #282A2E\
  38. }\
  39. .ace-tomorrow-night .ace_marker-layer .ace_selected-word {\
  40. border: 1px solid #373B41\
  41. }\
  42. .ace-tomorrow-night .ace_invisible {\
  43. color: #4B4E55\
  44. }\
  45. .ace-tomorrow-night .ace_keyword,\
  46. .ace-tomorrow-night .ace_meta,\
  47. .ace-tomorrow-night .ace_storage,\
  48. .ace-tomorrow-night .ace_storage.ace_type,\
  49. .ace-tomorrow-night .ace_support.ace_type {\
  50. color: #B294BB\
  51. }\
  52. .ace-tomorrow-night .ace_keyword.ace_operator {\
  53. color: #8ABEB7\
  54. }\
  55. .ace-tomorrow-night .ace_constant.ace_character,\
  56. .ace-tomorrow-night .ace_constant.ace_language,\
  57. .ace-tomorrow-night .ace_constant.ace_numeric,\
  58. .ace-tomorrow-night .ace_keyword.ace_other.ace_unit,\
  59. .ace-tomorrow-night .ace_support.ace_constant,\
  60. .ace-tomorrow-night .ace_variable.ace_parameter {\
  61. color: #DE935F\
  62. }\
  63. .ace-tomorrow-night .ace_constant.ace_other {\
  64. color: #CED1CF\
  65. }\
  66. .ace-tomorrow-night .ace_invalid {\
  67. color: #CED2CF;\
  68. background-color: #DF5F5F\
  69. }\
  70. .ace-tomorrow-night .ace_invalid.ace_deprecated {\
  71. color: #CED2CF;\
  72. background-color: #B798BF\
  73. }\
  74. .ace-tomorrow-night .ace_fold {\
  75. background-color: #81A2BE;\
  76. border-color: #C5C8C6\
  77. }\
  78. .ace-tomorrow-night .ace_entity.ace_name.ace_function,\
  79. .ace-tomorrow-night .ace_support.ace_function,\
  80. .ace-tomorrow-night .ace_variable {\
  81. color: #81A2BE\
  82. }\
  83. .ace-tomorrow-night .ace_support.ace_class,\
  84. .ace-tomorrow-night .ace_support.ace_type {\
  85. color: #F0C674\
  86. }\
  87. .ace-tomorrow-night .ace_heading,\
  88. .ace-tomorrow-night .ace_markup.ace_heading,\
  89. .ace-tomorrow-night .ace_string {\
  90. color: #B5BD68\
  91. }\
  92. .ace-tomorrow-night .ace_entity.ace_name.ace_tag,\
  93. .ace-tomorrow-night .ace_entity.ace_other.ace_attribute-name,\
  94. .ace-tomorrow-night .ace_meta.ace_tag,\
  95. .ace-tomorrow-night .ace_string.ace_regexp,\
  96. .ace-tomorrow-night .ace_variable {\
  97. color: #CC6666\
  98. }\
  99. .ace-tomorrow-night .ace_comment {\
  100. color: #969896\
  101. }\
  102. .ace-tomorrow-night .ace_indent-guide {\
  103. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNgYGBgYHB3d/8PAAOIAdULw8qMAAAAAElFTkSuQmCC) right repeat-y\
  104. }";
  105. var dom = require("../lib/dom");
  106. dom.importCssString(exports.cssText, exports.cssClass);
  107. });