Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

theme-twilight.js 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. ace.define("ace/theme/twilight",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
  2. exports.isDark = true;
  3. exports.cssClass = "ace-twilight";
  4. exports.cssText = ".ace-twilight .ace_gutter {\
  5. background: #232323;\
  6. color: #E2E2E2\
  7. }\
  8. .ace-twilight .ace_print-margin {\
  9. width: 1px;\
  10. background: #232323\
  11. }\
  12. .ace-twilight {\
  13. background-color: #141414;\
  14. color: #F8F8F8\
  15. }\
  16. .ace-twilight .ace_cursor {\
  17. color: #A7A7A7\
  18. }\
  19. .ace-twilight .ace_marker-layer .ace_selection {\
  20. background: rgba(221, 240, 255, 0.20)\
  21. }\
  22. .ace-twilight.ace_multiselect .ace_selection.ace_start {\
  23. box-shadow: 0 0 3px 0px #141414;\
  24. border-radius: 2px\
  25. }\
  26. .ace-twilight .ace_marker-layer .ace_step {\
  27. background: rgb(102, 82, 0)\
  28. }\
  29. .ace-twilight .ace_marker-layer .ace_bracket {\
  30. margin: -1px 0 0 -1px;\
  31. border: 1px solid rgba(255, 255, 255, 0.25)\
  32. }\
  33. .ace-twilight .ace_marker-layer .ace_active-line {\
  34. background: rgba(255, 255, 255, 0.031)\
  35. }\
  36. .ace-twilight .ace_gutter-active-line {\
  37. background-color: rgba(255, 255, 255, 0.031)\
  38. }\
  39. .ace-twilight .ace_marker-layer .ace_selected-word {\
  40. border: 1px solid rgba(221, 240, 255, 0.20)\
  41. }\
  42. .ace-twilight .ace_invisible {\
  43. color: rgba(255, 255, 255, 0.25)\
  44. }\
  45. .ace-twilight .ace_keyword,\
  46. .ace-twilight .ace_meta {\
  47. color: #CDA869\
  48. }\
  49. .ace-twilight .ace_constant,\
  50. .ace-twilight .ace_constant.ace_character,\
  51. .ace-twilight .ace_constant.ace_character.ace_escape,\
  52. .ace-twilight .ace_constant.ace_other,\
  53. .ace-twilight .ace_heading,\
  54. .ace-twilight .ace_markup.ace_heading,\
  55. .ace-twilight .ace_support.ace_constant {\
  56. color: #CF6A4C\
  57. }\
  58. .ace-twilight .ace_invalid.ace_illegal {\
  59. color: #F8F8F8;\
  60. background-color: rgba(86, 45, 86, 0.75)\
  61. }\
  62. .ace-twilight .ace_invalid.ace_deprecated {\
  63. text-decoration: underline;\
  64. font-style: italic;\
  65. color: #D2A8A1\
  66. }\
  67. .ace-twilight .ace_support {\
  68. color: #9B859D\
  69. }\
  70. .ace-twilight .ace_fold {\
  71. background-color: #AC885B;\
  72. border-color: #F8F8F8\
  73. }\
  74. .ace-twilight .ace_support.ace_function {\
  75. color: #DAD085\
  76. }\
  77. .ace-twilight .ace_list,\
  78. .ace-twilight .ace_markup.ace_list,\
  79. .ace-twilight .ace_storage {\
  80. color: #F9EE98\
  81. }\
  82. .ace-twilight .ace_entity.ace_name.ace_function,\
  83. .ace-twilight .ace_meta.ace_tag,\
  84. .ace-twilight .ace_variable {\
  85. color: #AC885B\
  86. }\
  87. .ace-twilight .ace_string {\
  88. color: #8F9D6A\
  89. }\
  90. .ace-twilight .ace_string.ace_regexp {\
  91. color: #E9C062\
  92. }\
  93. .ace-twilight .ace_comment {\
  94. font-style: italic;\
  95. color: #5F5A60\
  96. }\
  97. .ace-twilight .ace_variable {\
  98. color: #7587A6\
  99. }\
  100. .ace-twilight .ace_xml-pe {\
  101. color: #494949\
  102. }\
  103. .ace-twilight .ace_indent-guide {\
  104. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWMQERFpYLC1tf0PAAgOAnPnhxyiAAAAAElFTkSuQmCC) right repeat-y\
  105. }";
  106. var dom = require("../lib/dom");
  107. dom.importCssString(exports.cssText, exports.cssClass);
  108. });