Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

theme-github.js 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. ace.define("ace/theme/github",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
  2. exports.isDark = false;
  3. exports.cssClass = "ace-github";
  4. exports.cssText = "\
  5. .ace-github .ace_gutter {\
  6. background: #e8e8e8;\
  7. color: #AAA;\
  8. }\
  9. .ace-github {\
  10. background: #fff;\
  11. color: #000;\
  12. }\
  13. .ace-github .ace_keyword {\
  14. font-weight: bold;\
  15. }\
  16. .ace-github .ace_string {\
  17. color: #D14;\
  18. }\
  19. .ace-github .ace_variable.ace_class {\
  20. color: teal;\
  21. }\
  22. .ace-github .ace_constant.ace_numeric {\
  23. color: #099;\
  24. }\
  25. .ace-github .ace_constant.ace_buildin {\
  26. color: #0086B3;\
  27. }\
  28. .ace-github .ace_support.ace_function {\
  29. color: #0086B3;\
  30. }\
  31. .ace-github .ace_comment {\
  32. color: #998;\
  33. font-style: italic;\
  34. }\
  35. .ace-github .ace_variable.ace_language {\
  36. color: #0086B3;\
  37. }\
  38. .ace-github .ace_paren {\
  39. font-weight: bold;\
  40. }\
  41. .ace-github .ace_boolean {\
  42. font-weight: bold;\
  43. }\
  44. .ace-github .ace_string.ace_regexp {\
  45. color: #009926;\
  46. font-weight: normal;\
  47. }\
  48. .ace-github .ace_variable.ace_instance {\
  49. color: teal;\
  50. }\
  51. .ace-github .ace_constant.ace_language {\
  52. font-weight: bold;\
  53. }\
  54. .ace-github .ace_cursor {\
  55. color: black;\
  56. }\
  57. .ace-github .ace_marker-layer .ace_active-line {\
  58. background: rgb(255, 255, 204);\
  59. }\
  60. .ace-github .ace_marker-layer .ace_selection {\
  61. background: rgb(181, 213, 255);\
  62. }\
  63. .ace-github.ace_multiselect .ace_selection.ace_start {\
  64. box-shadow: 0 0 3px 0px white;\
  65. border-radius: 2px;\
  66. }\
  67. .ace-github.ace_nobold .ace_line > span {\
  68. font-weight: normal !important;\
  69. }\
  70. .ace-github .ace_marker-layer .ace_step {\
  71. background: rgb(252, 255, 0);\
  72. }\
  73. .ace-github .ace_marker-layer .ace_stack {\
  74. background: rgb(164, 229, 101);\
  75. }\
  76. .ace-github .ace_marker-layer .ace_bracket {\
  77. margin: -1px 0 0 -1px;\
  78. border: 1px solid rgb(192, 192, 192);\
  79. }\
  80. .ace-github .ace_gutter-active-line {\
  81. background-color : rgba(0, 0, 0, 0.07);\
  82. }\
  83. .ace-github .ace_marker-layer .ace_selected-word {\
  84. background: rgb(250, 250, 255);\
  85. border: 1px solid rgb(200, 200, 250);\
  86. }\
  87. .ace-github .ace_print-margin {\
  88. width: 1px;\
  89. background: #e8e8e8;\
  90. }\
  91. .ace-github .ace_indent-guide {\
  92. background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==\") right repeat-y;\
  93. }";
  94. var dom = require("../lib/dom");
  95. dom.importCssString(exports.cssText, exports.cssClass);
  96. });