theme-dawn.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. }\
  25. .ace-dawn .ace_marker-layer .ace_step {\
  26. background: rgb(255, 255, 0)\
  27. }\
  28. .ace-dawn .ace_marker-layer .ace_bracket {\
  29. margin: -1px 0 0 -1px;\
  30. border: 1px solid rgba(75, 75, 126, 0.50)\
  31. }\
  32. .ace-dawn .ace_marker-layer .ace_active-line {\
  33. background: rgba(36, 99, 180, 0.12)\
  34. }\
  35. .ace-dawn .ace_gutter-active-line {\
  36. background-color : #dcdcdc\
  37. }\
  38. .ace-dawn .ace_marker-layer .ace_selected-word {\
  39. border: 1px solid rgba(39, 95, 255, 0.30)\
  40. }\
  41. .ace-dawn .ace_invisible {\
  42. color: rgba(75, 75, 126, 0.50)\
  43. }\
  44. .ace-dawn .ace_keyword,\
  45. .ace-dawn .ace_meta {\
  46. color: #794938\
  47. }\
  48. .ace-dawn .ace_constant,\
  49. .ace-dawn .ace_constant.ace_character,\
  50. .ace-dawn .ace_constant.ace_character.ace_escape,\
  51. .ace-dawn .ace_constant.ace_other {\
  52. color: #811F24\
  53. }\
  54. .ace-dawn .ace_invalid.ace_illegal {\
  55. text-decoration: underline;\
  56. font-style: italic;\
  57. color: #F8F8F8;\
  58. background-color: #B52A1D\
  59. }\
  60. .ace-dawn .ace_invalid.ace_deprecated {\
  61. text-decoration: underline;\
  62. font-style: italic;\
  63. color: #B52A1D\
  64. }\
  65. .ace-dawn .ace_support {\
  66. color: #691C97\
  67. }\
  68. .ace-dawn .ace_support.ace_constant {\
  69. color: #B4371F\
  70. }\
  71. .ace-dawn .ace_fold {\
  72. background-color: #794938;\
  73. border-color: #080808\
  74. }\
  75. .ace-dawn .ace_list,\
  76. .ace-dawn .ace_markup.ace_list,\
  77. .ace-dawn .ace_support.ace_function {\
  78. color: #693A17\
  79. }\
  80. .ace-dawn .ace_storage {\
  81. font-style: italic;\
  82. color: #A71D5D\
  83. }\
  84. .ace-dawn .ace_string {\
  85. color: #0B6125\
  86. }\
  87. .ace-dawn .ace_string.ace_regexp {\
  88. color: #CF5628\
  89. }\
  90. .ace-dawn .ace_comment {\
  91. font-style: italic;\
  92. color: #5A525F\
  93. }\
  94. .ace-dawn .ace_heading,\
  95. .ace-dawn .ace_markup.ace_heading {\
  96. color: #19356D\
  97. }\
  98. .ace-dawn .ace_variable {\
  99. color: #234A97\
  100. }\
  101. .ace-dawn .ace_indent-guide {\
  102. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNgYGBgYLh/5+x/AAizA4hxNNsZAAAAAElFTkSuQmCC) right repeat-y\
  103. }";
  104. var dom = require("../lib/dom");
  105. dom.importCssString(exports.cssText, exports.cssClass);
  106. });