Ei kuvausta
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-clouds.js 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. ace.define("ace/theme/clouds",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
  2. exports.isDark = false;
  3. exports.cssClass = "ace-clouds";
  4. exports.cssText = ".ace-clouds .ace_gutter {\
  5. background: #ebebeb;\
  6. color: #333\
  7. }\
  8. .ace-clouds .ace_print-margin {\
  9. width: 1px;\
  10. background: #e8e8e8\
  11. }\
  12. .ace-clouds {\
  13. background-color: #FFFFFF;\
  14. color: #000000\
  15. }\
  16. .ace-clouds .ace_cursor {\
  17. color: #000000\
  18. }\
  19. .ace-clouds .ace_marker-layer .ace_selection {\
  20. background: #BDD5FC\
  21. }\
  22. .ace-clouds.ace_multiselect .ace_selection.ace_start {\
  23. box-shadow: 0 0 3px 0px #FFFFFF;\
  24. border-radius: 2px\
  25. }\
  26. .ace-clouds .ace_marker-layer .ace_step {\
  27. background: rgb(255, 255, 0)\
  28. }\
  29. .ace-clouds .ace_marker-layer .ace_bracket {\
  30. margin: -1px 0 0 -1px;\
  31. border: 1px solid #BFBFBF\
  32. }\
  33. .ace-clouds .ace_marker-layer .ace_active-line {\
  34. background: #FFFBD1\
  35. }\
  36. .ace-clouds .ace_gutter-active-line {\
  37. background-color : #dcdcdc\
  38. }\
  39. .ace-clouds .ace_marker-layer .ace_selected-word {\
  40. border: 1px solid #BDD5FC\
  41. }\
  42. .ace-clouds .ace_invisible {\
  43. color: #BFBFBF\
  44. }\
  45. .ace-clouds .ace_keyword,\
  46. .ace-clouds .ace_meta,\
  47. .ace-clouds .ace_support.ace_constant.ace_property-value {\
  48. color: #AF956F\
  49. }\
  50. .ace-clouds .ace_keyword.ace_operator {\
  51. color: #484848\
  52. }\
  53. .ace-clouds .ace_keyword.ace_other.ace_unit {\
  54. color: #96DC5F\
  55. }\
  56. .ace-clouds .ace_constant.ace_language {\
  57. color: #39946A\
  58. }\
  59. .ace-clouds .ace_constant.ace_numeric {\
  60. color: #46A609\
  61. }\
  62. .ace-clouds .ace_constant.ace_character.ace_entity {\
  63. color: #BF78CC\
  64. }\
  65. .ace-clouds .ace_invalid {\
  66. background-color: #FF002A\
  67. }\
  68. .ace-clouds .ace_fold {\
  69. background-color: #AF956F;\
  70. border-color: #000000\
  71. }\
  72. .ace-clouds .ace_storage,\
  73. .ace-clouds .ace_support.ace_class,\
  74. .ace-clouds .ace_support.ace_function,\
  75. .ace-clouds .ace_support.ace_other,\
  76. .ace-clouds .ace_support.ace_type {\
  77. color: #C52727\
  78. }\
  79. .ace-clouds .ace_string {\
  80. color: #5D90CD\
  81. }\
  82. .ace-clouds .ace_comment {\
  83. color: #BCC8BA\
  84. }\
  85. .ace-clouds .ace_entity.ace_name.ace_tag,\
  86. .ace-clouds .ace_entity.ace_other.ace_attribute-name {\
  87. color: #606060\
  88. }\
  89. .ace-clouds .ace_indent-guide {\
  90. background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==\") right repeat-y\
  91. }";
  92. var dom = require("../lib/dom");
  93. dom.importCssString(exports.cssText, exports.cssClass);
  94. });