Açıklama Yok
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-dawn.js 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. ace.define("ace/theme/dawn",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
  2. exports.isDark = false;
  3. exports.cssClass = "ace-dawn";
  4. exports.cssText = ".ace-dawn .ace_gutter {\
  5. background: #ebebeb;\
  6. color: #333\
  7. }\
  8. .ace-dawn .ace_print-margin {\
  9. width: 1px;\
  10. background: #e8e8e8\
  11. }\
  12. .ace-dawn {\
  13. background-color: #F9F9F9;\
  14. color: #080808\
  15. }\
  16. .ace-dawn .ace_cursor {\
  17. color: #000000\
  18. }\
  19. .ace-dawn .ace_marker-layer .ace_selection {\
  20. background: rgba(39, 95, 255, 0.30)\
  21. }\
  22. .ace-dawn.ace_multiselect .ace_selection.ace_start {\
  23. box-shadow: 0 0 3px 0px #F9F9F9;\
  24. border-radius: 2px\
  25. }\
  26. .ace-dawn .ace_marker-layer .ace_step {\
  27. background: rgb(255, 255, 0)\
  28. }\
  29. .ace-dawn .ace_marker-layer .ace_bracket {\
  30. margin: -1px 0 0 -1px;\
  31. border: 1px solid rgba(75, 75, 126, 0.50)\
  32. }\
  33. .ace-dawn .ace_marker-layer .ace_active-line {\
  34. background: rgba(36, 99, 180, 0.12)\
  35. }\
  36. .ace-dawn .ace_gutter-active-line {\
  37. background-color : #dcdcdc\
  38. }\
  39. .ace-dawn .ace_marker-layer .ace_selected-word {\
  40. border: 1px solid rgba(39, 95, 255, 0.30)\
  41. }\
  42. .ace-dawn .ace_invisible {\
  43. color: rgba(75, 75, 126, 0.50)\
  44. }\
  45. .ace-dawn .ace_keyword,\
  46. .ace-dawn .ace_meta {\
  47. color: #794938\
  48. }\
  49. .ace-dawn .ace_constant,\
  50. .ace-dawn .ace_constant.ace_character,\
  51. .ace-dawn .ace_constant.ace_character.ace_escape,\
  52. .ace-dawn .ace_constant.ace_other {\
  53. color: #811F24\
  54. }\
  55. .ace-dawn .ace_invalid.ace_illegal {\
  56. text-decoration: underline;\
  57. font-style: italic;\
  58. color: #F8F8F8;\
  59. background-color: #B52A1D\
  60. }\
  61. .ace-dawn .ace_invalid.ace_deprecated {\
  62. text-decoration: underline;\
  63. font-style: italic;\
  64. color: #B52A1D\
  65. }\
  66. .ace-dawn .ace_support {\
  67. color: #691C97\
  68. }\
  69. .ace-dawn .ace_support.ace_constant {\
  70. color: #B4371F\
  71. }\
  72. .ace-dawn .ace_fold {\
  73. background-color: #794938;\
  74. border-color: #080808\
  75. }\
  76. .ace-dawn .ace_list,\
  77. .ace-dawn .ace_markup.ace_list,\
  78. .ace-dawn .ace_support.ace_function {\
  79. color: #693A17\
  80. }\
  81. .ace-dawn .ace_storage {\
  82. font-style: italic;\
  83. color: #A71D5D\
  84. }\
  85. .ace-dawn .ace_string {\
  86. color: #0B6125\
  87. }\
  88. .ace-dawn .ace_string.ace_regexp {\
  89. color: #CF5628\
  90. }\
  91. .ace-dawn .ace_comment {\
  92. font-style: italic;\
  93. color: #5A525F\
  94. }\
  95. .ace-dawn .ace_heading,\
  96. .ace-dawn .ace_markup.ace_heading {\
  97. color: #19356D\
  98. }\
  99. .ace-dawn .ace_variable {\
  100. color: #234A97\
  101. }\
  102. .ace-dawn .ace_indent-guide {\
  103. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNgYGBgYLh/5+x/AAizA4hxNNsZAAAAAElFTkSuQmCC) right repeat-y\
  104. }";
  105. var dom = require("../lib/dom");
  106. dom.importCssString(exports.cssText, exports.cssClass);
  107. });