No Description
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-tomorrow_night_bright.js 3.7KB

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