Нема описа
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.js 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. ace.define("ace/theme/tomorrow",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
  2. exports.isDark = false;
  3. exports.cssClass = "ace-tomorrow";
  4. exports.cssText = ".ace-tomorrow .ace_gutter {\
  5. background: #f6f6f6;\
  6. color: #4D4D4C\
  7. }\
  8. .ace-tomorrow .ace_print-margin {\
  9. width: 1px;\
  10. background: #f6f6f6\
  11. }\
  12. .ace-tomorrow {\
  13. background-color: #FFFFFF;\
  14. color: #4D4D4C\
  15. }\
  16. .ace-tomorrow .ace_cursor {\
  17. color: #AEAFAD\
  18. }\
  19. .ace-tomorrow .ace_marker-layer .ace_selection {\
  20. background: #D6D6D6\
  21. }\
  22. .ace-tomorrow.ace_multiselect .ace_selection.ace_start {\
  23. box-shadow: 0 0 3px 0px #FFFFFF;\
  24. border-radius: 2px\
  25. }\
  26. .ace-tomorrow .ace_marker-layer .ace_step {\
  27. background: rgb(255, 255, 0)\
  28. }\
  29. .ace-tomorrow .ace_marker-layer .ace_bracket {\
  30. margin: -1px 0 0 -1px;\
  31. border: 1px solid #D1D1D1\
  32. }\
  33. .ace-tomorrow .ace_marker-layer .ace_active-line {\
  34. background: #EFEFEF\
  35. }\
  36. .ace-tomorrow .ace_gutter-active-line {\
  37. background-color : #dcdcdc\
  38. }\
  39. .ace-tomorrow .ace_marker-layer .ace_selected-word {\
  40. border: 1px solid #D6D6D6\
  41. }\
  42. .ace-tomorrow .ace_invisible {\
  43. color: #D1D1D1\
  44. }\
  45. .ace-tomorrow .ace_keyword,\
  46. .ace-tomorrow .ace_meta,\
  47. .ace-tomorrow .ace_storage,\
  48. .ace-tomorrow .ace_storage.ace_type,\
  49. .ace-tomorrow .ace_support.ace_type {\
  50. color: #8959A8\
  51. }\
  52. .ace-tomorrow .ace_keyword.ace_operator {\
  53. color: #3E999F\
  54. }\
  55. .ace-tomorrow .ace_constant.ace_character,\
  56. .ace-tomorrow .ace_constant.ace_language,\
  57. .ace-tomorrow .ace_constant.ace_numeric,\
  58. .ace-tomorrow .ace_keyword.ace_other.ace_unit,\
  59. .ace-tomorrow .ace_support.ace_constant,\
  60. .ace-tomorrow .ace_variable.ace_parameter {\
  61. color: #F5871F\
  62. }\
  63. .ace-tomorrow .ace_constant.ace_other {\
  64. color: #666969\
  65. }\
  66. .ace-tomorrow .ace_invalid {\
  67. color: #FFFFFF;\
  68. background-color: #C82829\
  69. }\
  70. .ace-tomorrow .ace_invalid.ace_deprecated {\
  71. color: #FFFFFF;\
  72. background-color: #8959A8\
  73. }\
  74. .ace-tomorrow .ace_fold {\
  75. background-color: #4271AE;\
  76. border-color: #4D4D4C\
  77. }\
  78. .ace-tomorrow .ace_entity.ace_name.ace_function,\
  79. .ace-tomorrow .ace_support.ace_function,\
  80. .ace-tomorrow .ace_variable {\
  81. color: #4271AE\
  82. }\
  83. .ace-tomorrow .ace_support.ace_class,\
  84. .ace-tomorrow .ace_support.ace_type {\
  85. color: #C99E00\
  86. }\
  87. .ace-tomorrow .ace_heading,\
  88. .ace-tomorrow .ace_markup.ace_heading,\
  89. .ace-tomorrow .ace_string {\
  90. color: #718C00\
  91. }\
  92. .ace-tomorrow .ace_entity.ace_name.ace_tag,\
  93. .ace-tomorrow .ace_entity.ace_other.ace_attribute-name,\
  94. .ace-tomorrow .ace_meta.ace_tag,\
  95. .ace-tomorrow .ace_string.ace_regexp,\
  96. .ace-tomorrow .ace_variable {\
  97. color: #C82829\
  98. }\
  99. .ace-tomorrow .ace_comment {\
  100. color: #8E908C\
  101. }\
  102. .ace-tomorrow .ace_indent-guide {\
  103. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bdu3f/BwAlfgctduB85QAAAABJRU5ErkJggg==) right repeat-y\
  104. }";
  105. var dom = require("../lib/dom");
  106. dom.importCssString(exports.cssText, exports.cssClass);
  107. });