theme-tomorrow_night_bright.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. ace.define("ace/theme/tomorrow_night_bright",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
  2. exports.isDark = true;
  3. exports.cssClass = "ace-tomorrow-night-bright";
  4. exports.cssText = ".ace-tomorrow-night-bright .ace_gutter {\
  5. background: #1a1a1a;\
  6. color: #DEDEDE\
  7. }\
  8. .ace-tomorrow-night-bright .ace_print-margin {\
  9. width: 1px;\
  10. background: #1a1a1a\
  11. }\
  12. .ace-tomorrow-night-bright {\
  13. background-color: #000000;\
  14. color: #DEDEDE\
  15. }\
  16. .ace-tomorrow-night-bright .ace_cursor {\
  17. color: #9F9F9F\
  18. }\
  19. .ace-tomorrow-night-bright .ace_marker-layer .ace_selection {\
  20. background: #424242\
  21. }\
  22. .ace-tomorrow-night-bright.ace_multiselect .ace_selection.ace_start {\
  23. box-shadow: 0 0 3px 0px #000000;\
  24. }\
  25. .ace-tomorrow-night-bright .ace_marker-layer .ace_step {\
  26. background: rgb(102, 82, 0)\
  27. }\
  28. .ace-tomorrow-night-bright .ace_marker-layer .ace_bracket {\
  29. margin: -1px 0 0 -1px;\
  30. border: 1px solid #888888\
  31. }\
  32. .ace-tomorrow-night-bright .ace_marker-layer .ace_highlight {\
  33. border: 1px solid rgb(110, 119, 0);\
  34. border-bottom: 0;\
  35. box-shadow: inset 0 -1px rgb(110, 119, 0);\
  36. margin: -1px 0 0 -1px;\
  37. background: rgba(255, 235, 0, 0.1)\
  38. }\
  39. .ace-tomorrow-night-bright .ace_marker-layer .ace_active-line {\
  40. background: #2A2A2A\
  41. }\
  42. .ace-tomorrow-night-bright .ace_gutter-active-line {\
  43. background-color: #2A2A2A\
  44. }\
  45. .ace-tomorrow-night-bright .ace_stack {\
  46. background-color: rgb(66, 90, 44)\
  47. }\
  48. .ace-tomorrow-night-bright .ace_marker-layer .ace_selected-word {\
  49. border: 1px solid #888888\
  50. }\
  51. .ace-tomorrow-night-bright .ace_invisible {\
  52. color: #343434\
  53. }\
  54. .ace-tomorrow-night-bright .ace_keyword,\
  55. .ace-tomorrow-night-bright .ace_meta,\
  56. .ace-tomorrow-night-bright .ace_storage,\
  57. .ace-tomorrow-night-bright .ace_storage.ace_type,\
  58. .ace-tomorrow-night-bright .ace_support.ace_type {\
  59. color: #C397D8\
  60. }\
  61. .ace-tomorrow-night-bright .ace_keyword.ace_operator {\
  62. color: #70C0B1\
  63. }\
  64. .ace-tomorrow-night-bright .ace_constant.ace_character,\
  65. .ace-tomorrow-night-bright .ace_constant.ace_language,\
  66. .ace-tomorrow-night-bright .ace_constant.ace_numeric,\
  67. .ace-tomorrow-night-bright .ace_keyword.ace_other.ace_unit,\
  68. .ace-tomorrow-night-bright .ace_support.ace_constant,\
  69. .ace-tomorrow-night-bright .ace_variable.ace_parameter {\
  70. color: #E78C45\
  71. }\
  72. .ace-tomorrow-night-bright .ace_constant.ace_other {\
  73. color: #EEEEEE\
  74. }\
  75. .ace-tomorrow-night-bright .ace_invalid {\
  76. color: #CED2CF;\
  77. background-color: #DF5F5F\
  78. }\
  79. .ace-tomorrow-night-bright .ace_invalid.ace_deprecated {\
  80. color: #CED2CF;\
  81. background-color: #B798BF\
  82. }\
  83. .ace-tomorrow-night-bright .ace_fold {\
  84. background-color: #7AA6DA;\
  85. border-color: #DEDEDE\
  86. }\
  87. .ace-tomorrow-night-bright .ace_entity.ace_name.ace_function,\
  88. .ace-tomorrow-night-bright .ace_support.ace_function,\
  89. .ace-tomorrow-night-bright .ace_variable {\
  90. color: #7AA6DA\
  91. }\
  92. .ace-tomorrow-night-bright .ace_support.ace_class,\
  93. .ace-tomorrow-night-bright .ace_support.ace_type {\
  94. color: #E7C547\
  95. }\
  96. .ace-tomorrow-night-bright .ace_heading,\
  97. .ace-tomorrow-night-bright .ace_markup.ace_heading,\
  98. .ace-tomorrow-night-bright .ace_string {\
  99. color: #B9CA4A\
  100. }\
  101. .ace-tomorrow-night-bright .ace_entity.ace_name.ace_tag,\
  102. .ace-tomorrow-night-bright .ace_entity.ace_other.ace_attribute-name,\
  103. .ace-tomorrow-night-bright .ace_meta.ace_tag,\
  104. .ace-tomorrow-night-bright .ace_string.ace_regexp,\
  105. .ace-tomorrow-night-bright .ace_variable {\
  106. color: #D54E53\
  107. }\
  108. .ace-tomorrow-night-bright .ace_comment {\
  109. color: #969896\
  110. }\
  111. .ace-tomorrow-night-bright .ace_c9searchresults.ace_keyword {\
  112. color: #C2C280\
  113. }\
  114. .ace-tomorrow-night-bright .ace_indent-guide {\
  115. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNgYGBgYFBXV/8PAAJoAXX4kT2EAAAAAElFTkSuQmCC) right repeat-y\
  116. }";
  117. var dom = require("../lib/dom");
  118. dom.importCssString(exports.cssText, exports.cssClass);
  119. });