Няма описание
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.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. ace.define("ace/theme/kuroir",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
  2. exports.isDark = false;
  3. exports.cssClass = "ace-kuroir";
  4. exports.cssText = "\
  5. .ace-kuroir .ace_gutter {\
  6. background: #e8e8e8;\
  7. color: #333;\
  8. }\
  9. .ace-kuroir .ace_print-margin {\
  10. width: 1px;\
  11. background: #e8e8e8;\
  12. }\
  13. .ace-kuroir {\
  14. background-color: #E8E9E8;\
  15. color: #363636;\
  16. }\
  17. .ace-kuroir .ace_cursor {\
  18. color: #202020;\
  19. }\
  20. .ace-kuroir .ace_marker-layer .ace_selection {\
  21. background: rgba(245, 170, 0, 0.57);\
  22. }\
  23. .ace-kuroir.ace_multiselect .ace_selection.ace_start {\
  24. box-shadow: 0 0 3px 0px #E8E9E8;\
  25. border-radius: 2px;\
  26. }\
  27. .ace-kuroir .ace_marker-layer .ace_step {\
  28. background: rgb(198, 219, 174);\
  29. }\
  30. .ace-kuroir .ace_marker-layer .ace_bracket {\
  31. margin: -1px 0 0 -1px;\
  32. border: 1px solid rgba(0, 0, 0, 0.29);\
  33. }\
  34. .ace-kuroir .ace_marker-layer .ace_active-line {\
  35. background: rgba(203, 220, 47, 0.22);\
  36. }\
  37. .ace-kuroir .ace_gutter-active-line {\
  38. background-color: rgba(203, 220, 47, 0.22);\
  39. }\
  40. .ace-kuroir .ace_marker-layer .ace_selected-word {\
  41. border: 1px solid rgba(245, 170, 0, 0.57);\
  42. }\
  43. .ace-kuroir .ace_fold {\
  44. border-color: #363636;\
  45. }\
  46. .ace-kuroir .ace_constant{color:#CD6839;}.ace-kuroir .ace_constant.ace_numeric{color:#9A5925;}.ace-kuroir .ace_support{color:#104E8B;}.ace-kuroir .ace_support.ace_function{color:#005273;}.ace-kuroir .ace_support.ace_constant{color:#CF6A4C;}.ace-kuroir .ace_storage{color:#A52A2A;}.ace-kuroir .ace_invalid.ace_illegal{color:#FD1224;\
  47. background-color:rgba(255, 6, 0, 0.15);}.ace-kuroir .ace_invalid.ace_deprecated{text-decoration:underline;\
  48. font-style:italic;\
  49. color:#FD1732;\
  50. background-color:#E8E9E8;}.ace-kuroir .ace_string{color:#639300;}.ace-kuroir .ace_string.ace_regexp{color:#417E00;\
  51. background-color:#C9D4BE;}.ace-kuroir .ace_comment{color:rgba(148, 148, 148, 0.91);\
  52. background-color:rgba(220, 220, 220, 0.56);}.ace-kuroir .ace_variable{color:#009ACD;}.ace-kuroir .ace_meta.ace_tag{color:#005273;}.ace-kuroir .ace_markup.ace_heading{color:#B8012D;\
  53. background-color:rgba(191, 97, 51, 0.051);}.ace-kuroir .ace_markup.ace_list{color:#8F5B26;}\
  54. ";
  55. var dom = require("../lib/dom");
  56. dom.importCssString(exports.cssText, exports.cssClass);
  57. });