Package not found. Please check the package name and try again.

jruby_activiti 1.2.5 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (317) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -1
  3. data/.ruby-version +1 -1
  4. data/CHANGELOG +6 -0
  5. data/Jarfile +5 -0
  6. data/Jarfile.lock +52 -13
  7. data/README.md +21 -9
  8. data/java/build.md +3 -0
  9. data/java/mapping.md +20 -0
  10. data/java/pom.xml +30 -0
  11. data/java/src/main/java/jrubyactiviti/Modeler.java +95 -0
  12. data/java/src/main/java/jrubyactiviti/ProcessDiagram.java +491 -0
  13. data/java/src/main/java/jrubyactiviti/ProcessInstanceHighlights.java +237 -0
  14. data/java/src/main/java/jrubyactiviti/StencilsetResource.java +16 -0
  15. data/java/src/main/resources/stencilset.json +1339 -0
  16. data/jruby_activiti.gemspec +3 -2
  17. data/lib/generators/jruby_activiti/install_generator.rb +4 -0
  18. data/lib/jar/jrubyactiviti-2.0.jar +0 -0
  19. data/lib/jruby_activiti/version.rb +1 -1
  20. data/lib/jruby_activiti/web.rb +81 -0
  21. data/lib/jruby_activiti.rb +28 -20
  22. data/test/{base_test.rb → activiti_test.rb} +1 -3
  23. data/test/instance_hights_test.rb +18 -0
  24. data/test/modeler_test.rb +35 -0
  25. data/test/process_diagram_test.rb +33 -0
  26. data/test/resources/model_init_editor_source.json +1 -0
  27. data/test/resources/model_json_xml.json +278 -0
  28. data/test/resources/model_svg_xml.xml +66 -0
  29. data/test/stencilset_test.rb +7 -0
  30. data/test/test_helper.rb +2 -0
  31. data/web/public/diagram-viewer/images/bg.png +0 -0
  32. data/web/public/diagram-viewer/images/breadcrumbs.png +0 -0
  33. data/web/public/diagram-viewer/images/checker-bg.png +0 -0
  34. data/web/public/diagram-viewer/images/deployer/blue/message_catch.png +0 -0
  35. data/web/public/diagram-viewer/images/deployer/business_rule.png +0 -0
  36. data/web/public/diagram-viewer/images/deployer/error_catch.png +0 -0
  37. data/web/public/diagram-viewer/images/deployer/error_throw.png +0 -0
  38. data/web/public/diagram-viewer/images/deployer/manual.png +0 -0
  39. data/web/public/diagram-viewer/images/deployer/message_catch.png +0 -0
  40. data/web/public/diagram-viewer/images/deployer/message_throw.png +0 -0
  41. data/web/public/diagram-viewer/images/deployer/receive.png +0 -0
  42. data/web/public/diagram-viewer/images/deployer/script.png +0 -0
  43. data/web/public/diagram-viewer/images/deployer/send.png +0 -0
  44. data/web/public/diagram-viewer/images/deployer/service.png +0 -0
  45. data/web/public/diagram-viewer/images/deployer/signal_catch.png +0 -0
  46. data/web/public/diagram-viewer/images/deployer/signal_throw.png +0 -0
  47. data/web/public/diagram-viewer/images/deployer/timer.png +0 -0
  48. data/web/public/diagram-viewer/images/deployer/user.png +0 -0
  49. data/web/public/diagram-viewer/index.html +130 -0
  50. data/web/public/diagram-viewer/js/ActivitiRest.js +74 -0
  51. data/web/public/diagram-viewer/js/ActivityImpl.js +1 -0
  52. data/web/public/diagram-viewer/js/Color.js +603 -0
  53. data/web/public/diagram-viewer/js/LineBreakMeasurer.js +270 -0
  54. data/web/public/diagram-viewer/js/Polyline.js +387 -0
  55. data/web/public/diagram-viewer/js/ProcessDiagramCanvas.js +2172 -0
  56. data/web/public/diagram-viewer/js/ProcessDiagramGenerator.js +1087 -0
  57. data/web/public/diagram-viewer/js/jquery/jquery.asyncqueue.js +125 -0
  58. data/web/public/diagram-viewer/js/jquery/jquery.js +9266 -0
  59. data/web/public/diagram-viewer/js/jquery/jquery.progressbar.js +131 -0
  60. data/web/public/diagram-viewer/js/jstools.js +23 -0
  61. data/web/public/diagram-viewer/js/raphael.2.1.1.js +10 -0
  62. data/web/public/diagram-viewer/js/raphael.js +10 -0
  63. data/web/public/diagram-viewer/js/raphael_uncompressed.js +5815 -0
  64. data/web/public/diagram-viewer/js/textlayout.js +441 -0
  65. data/web/public/diagram-viewer/style.css +1 -0
  66. data/web/public/editor-app/app-cfg.js +25 -0
  67. data/web/public/editor-app/app.js +432 -0
  68. data/web/public/editor-app/configuration/properties/assignment-display-template.html +4 -0
  69. data/web/public/editor-app/configuration/properties/assignment-popup.html +44 -0
  70. data/web/public/editor-app/configuration/properties/assignment-write-template.html +4 -0
  71. data/web/public/editor-app/configuration/properties/boolean-property-template.html +4 -0
  72. data/web/public/editor-app/configuration/properties/condition-expression-display-template.html +2 -0
  73. data/web/public/editor-app/configuration/properties/condition-expression-popup.html +29 -0
  74. data/web/public/editor-app/configuration/properties/condition-expression-write-template.html +4 -0
  75. data/web/public/editor-app/configuration/properties/default-value-display-template.html +4 -0
  76. data/web/public/editor-app/configuration/properties/event-listeners-display-template.html +3 -0
  77. data/web/public/editor-app/configuration/properties/event-listeners-popup.html +115 -0
  78. data/web/public/editor-app/configuration/properties/event-listeners-write-template.html +4 -0
  79. data/web/public/editor-app/configuration/properties/execution-listeners-display-template.html +3 -0
  80. data/web/public/editor-app/configuration/properties/execution-listeners-popup.html +101 -0
  81. data/web/public/editor-app/configuration/properties/execution-listeners-write-template.html +4 -0
  82. data/web/public/editor-app/configuration/properties/feedback-popup.html +17 -0
  83. data/web/public/editor-app/configuration/properties/fields-display-template.html +3 -0
  84. data/web/public/editor-app/configuration/properties/fields-popup.html +61 -0
  85. data/web/public/editor-app/configuration/properties/fields-write-template.html +4 -0
  86. data/web/public/editor-app/configuration/properties/form-properties-display-template.html +3 -0
  87. data/web/public/editor-app/configuration/properties/form-properties-popup.html +93 -0
  88. data/web/public/editor-app/configuration/properties/form-properties-write-template.html +4 -0
  89. data/web/public/editor-app/configuration/properties/in-parameters-display-template.html +3 -0
  90. data/web/public/editor-app/configuration/properties/in-parameters-popup.html +53 -0
  91. data/web/public/editor-app/configuration/properties/in-parameters-write-template.html +4 -0
  92. data/web/public/editor-app/configuration/properties/message-definitions-display-template.html +2 -0
  93. data/web/public/editor-app/configuration/properties/message-definitions-popup.html +50 -0
  94. data/web/public/editor-app/configuration/properties/message-definitions-write-template.html +3 -0
  95. data/web/public/editor-app/configuration/properties/message-property-write-template.html +4 -0
  96. data/web/public/editor-app/configuration/properties/multiinstance-property-write-template.html +8 -0
  97. data/web/public/editor-app/configuration/properties/out-parameters-display-template.html +3 -0
  98. data/web/public/editor-app/configuration/properties/out-parameters-popup.html +53 -0
  99. data/web/public/editor-app/configuration/properties/out-parameters-write-template.html +4 -0
  100. data/web/public/editor-app/configuration/properties/sequenceflow-order-display-template.html +3 -0
  101. data/web/public/editor-app/configuration/properties/sequenceflow-order-popup.html +47 -0
  102. data/web/public/editor-app/configuration/properties/sequenceflow-order-write-template.html +4 -0
  103. data/web/public/editor-app/configuration/properties/signal-definitions-display-template.html +3 -0
  104. data/web/public/editor-app/configuration/properties/signal-definitions-popup.html +58 -0
  105. data/web/public/editor-app/configuration/properties/signal-definitions-write-template.html +4 -0
  106. data/web/public/editor-app/configuration/properties/signal-property-write-template.html +4 -0
  107. data/web/public/editor-app/configuration/properties/string-property-write-mode-template.html +8 -0
  108. data/web/public/editor-app/configuration/properties/subprocess-reference-display-template.html +3 -0
  109. data/web/public/editor-app/configuration/properties/subprocess-reference-popup.html +43 -0
  110. data/web/public/editor-app/configuration/properties/subprocess-reference-write-template.html +4 -0
  111. data/web/public/editor-app/configuration/properties/task-listeners-display-template.html +3 -0
  112. data/web/public/editor-app/configuration/properties/task-listeners-popup.html +102 -0
  113. data/web/public/editor-app/configuration/properties/task-listeners-write-template.html +4 -0
  114. data/web/public/editor-app/configuration/properties/text-popup.html +17 -0
  115. data/web/public/editor-app/configuration/properties/text-property-write-template.html +4 -0
  116. data/web/public/editor-app/configuration/properties-assignment-controller.js +150 -0
  117. data/web/public/editor-app/configuration/properties-condition-expression-controller.js +58 -0
  118. data/web/public/editor-app/configuration/properties-custom-controllers.js +18 -0
  119. data/web/public/editor-app/configuration/properties-default-controllers.js +115 -0
  120. data/web/public/editor-app/configuration/properties-event-listeners-controller.js +266 -0
  121. data/web/public/editor-app/configuration/properties-execution-listeners-controller.js +326 -0
  122. data/web/public/editor-app/configuration/properties-fields-controller.js +192 -0
  123. data/web/public/editor-app/configuration/properties-form-properties-controller.js +192 -0
  124. data/web/public/editor-app/configuration/properties-in-parameters-controller.js +158 -0
  125. data/web/public/editor-app/configuration/properties-message-definitions-controller.js +137 -0
  126. data/web/public/editor-app/configuration/properties-message-scope-controller.js +48 -0
  127. data/web/public/editor-app/configuration/properties-multiinstance-controller.js +34 -0
  128. data/web/public/editor-app/configuration/properties-out-parameters-controller.js +158 -0
  129. data/web/public/editor-app/configuration/properties-sequenceflow-order-controller.js +130 -0
  130. data/web/public/editor-app/configuration/properties-signal-definitions-controller.js +136 -0
  131. data/web/public/editor-app/configuration/properties-signal-scope-controller.js +47 -0
  132. data/web/public/editor-app/configuration/properties-task-listeners-controller.js +325 -0
  133. data/web/public/editor-app/configuration/properties.js +99 -0
  134. data/web/public/editor-app/configuration/toolbar-custom-actions.js +18 -0
  135. data/web/public/editor-app/configuration/toolbar-default-actions.js +429 -0
  136. data/web/public/editor-app/configuration/toolbar.js +175 -0
  137. data/web/public/editor-app/configuration/url-config.js +34 -0
  138. data/web/public/editor-app/css/style-common.css +1518 -0
  139. data/web/public/editor-app/css/style-editor.css +639 -0
  140. data/web/public/editor-app/css/style.css +471 -0
  141. data/web/public/editor-app/editor/css/editor.css +202 -0
  142. data/web/public/editor-app/editor/i18n/translation_de.js +383 -0
  143. data/web/public/editor-app/editor/i18n/translation_en_us.js +423 -0
  144. data/web/public/editor-app/editor/i18n/translation_signavio_de.js +106 -0
  145. data/web/public/editor-app/editor/i18n/translation_signavio_en_us.js +108 -0
  146. data/web/public/editor-app/editor/oryx.debug.js +24510 -0
  147. data/web/public/editor-app/editor/oryx.js +30 -0
  148. data/web/public/editor-app/editor-config.js +32 -0
  149. data/web/public/editor-app/editor-controller.js +65 -0
  150. data/web/public/editor-app/editor-utils.js +135 -0
  151. data/web/public/editor-app/editor.html +136 -0
  152. data/web/public/editor-app/eventbus.js +133 -0
  153. data/web/public/editor-app/fonts/activiti-admin-webfont.eot +0 -0
  154. data/web/public/editor-app/fonts/activiti-admin-webfont.svg +43 -0
  155. data/web/public/editor-app/fonts/activiti-admin-webfont.ttf +0 -0
  156. data/web/public/editor-app/fonts/activiti-admin-webfont.woff +0 -0
  157. data/web/public/editor-app/fonts/glyphicons-halflings-regular.eot +0 -0
  158. data/web/public/editor-app/fonts/glyphicons-halflings-regular.svg +229 -0
  159. data/web/public/editor-app/fonts/glyphicons-halflings-regular.ttf +0 -0
  160. data/web/public/editor-app/fonts/glyphicons-halflings-regular.woff +0 -0
  161. data/web/public/editor-app/header-controller.js +31 -0
  162. data/web/public/editor-app/i18n/en.json +286 -0
  163. data/web/public/editor-app/images/bpmn-error.png +0 -0
  164. data/web/public/editor-app/images/bpmn-warning.png +0 -0
  165. data/web/public/editor-app/images/datadefinition.png +0 -0
  166. data/web/public/editor-app/images/delete.png +0 -0
  167. data/web/public/editor-app/images/loading.gif +0 -0
  168. data/web/public/editor-app/images/logo-2x.png +0 -0
  169. data/web/public/editor-app/images/logo.png +0 -0
  170. data/web/public/editor-app/images/nw-handle-dark.gif +0 -0
  171. data/web/public/editor-app/images/se-handle-dark.gif +0 -0
  172. data/web/public/editor-app/images/shapemenu_highlight.png +0 -0
  173. data/web/public/editor-app/images/wrench.png +0 -0
  174. data/web/public/editor-app/libs/angular-cookies_1.2.13/angular-cookies.min.js +8 -0
  175. data/web/public/editor-app/libs/angular-cookies_1.2.13/angular-cookies.min.js.map +8 -0
  176. data/web/public/editor-app/libs/angular-dragdrop.min-1.0.3.js +9 -0
  177. data/web/public/editor-app/libs/angular-dragdrop_1.0.7/angular-dragdrop.min.js +29 -0
  178. data/web/public/editor-app/libs/angular-mocks_1.2.13/angular-mocks.js +2136 -0
  179. data/web/public/editor-app/libs/angular-resource_1.2.13/angular-resource.js +596 -0
  180. data/web/public/editor-app/libs/angular-resource_1.2.13/angular-resource.min.js +13 -0
  181. data/web/public/editor-app/libs/angular-resource_1.2.13/angular-resource.min.js.map +8 -0
  182. data/web/public/editor-app/libs/angular-route_1.2.13/angular-route.js +921 -0
  183. data/web/public/editor-app/libs/angular-route_1.2.13/angular-route.min.js +14 -0
  184. data/web/public/editor-app/libs/angular-route_1.2.13/angular-route.min.js.map +8 -0
  185. data/web/public/editor-app/libs/angular-sanitize_1.2.13/angular-sanitize.js +625 -0
  186. data/web/public/editor-app/libs/angular-sanitize_1.2.13/angular-sanitize.min.js +14 -0
  187. data/web/public/editor-app/libs/angular-sanitize_1.2.13/angular-sanitize.min.js.map +8 -0
  188. data/web/public/editor-app/libs/angular-scroll_0.5.7/angular-scroll.min.js +1 -0
  189. data/web/public/editor-app/libs/angular-strap_2.0.5/angular-strap.min.js +9 -0
  190. data/web/public/editor-app/libs/angular-strap_2.0.5/angular-strap.tpl.min.js +8 -0
  191. data/web/public/editor-app/libs/angular-translate-loader-static-files/.bower.json +19 -0
  192. data/web/public/editor-app/libs/angular-translate-loader-static-files/angular-translate-loader-static-files.js +31 -0
  193. data/web/public/editor-app/libs/angular-translate-loader-static-files/angular-translate-loader-static-files.min.js +6 -0
  194. data/web/public/editor-app/libs/angular-translate-storage-cookie/.bower.json +20 -0
  195. data/web/public/editor-app/libs/angular-translate-storage-cookie/angular-translate-storage-cookie.js +19 -0
  196. data/web/public/editor-app/libs/angular-translate-storage-cookie/angular-translate-storage-cookie.min.js +6 -0
  197. data/web/public/editor-app/libs/angular-translate_2.4.2/angular-translate.js +960 -0
  198. data/web/public/editor-app/libs/angular-translate_2.4.2/angular-translate.min.js +6 -0
  199. data/web/public/editor-app/libs/angular_1.2.13/angular-animate.min.js +27 -0
  200. data/web/public/editor-app/libs/angular_1.2.13/angular.min.js +204 -0
  201. data/web/public/editor-app/libs/bootstrap-daterangepicker_1.3.7/daterangepicker-bs3.css +267 -0
  202. data/web/public/editor-app/libs/bootstrap-daterangepicker_1.3.7/daterangepicker.js +1026 -0
  203. data/web/public/editor-app/libs/bootstrap_3.1.1/css/bootstrap-theme.css +347 -0
  204. data/web/public/editor-app/libs/bootstrap_3.1.1/css/bootstrap-theme.css.map +1 -0
  205. data/web/public/editor-app/libs/bootstrap_3.1.1/css/bootstrap-theme.min.css +7 -0
  206. data/web/public/editor-app/libs/bootstrap_3.1.1/css/bootstrap.css +5785 -0
  207. data/web/public/editor-app/libs/bootstrap_3.1.1/css/bootstrap.css.map +1 -0
  208. data/web/public/editor-app/libs/bootstrap_3.1.1/css/bootstrap.min.css +7 -0
  209. data/web/public/editor-app/libs/bootstrap_3.1.1/fonts/glyphicons-halflings-regular.eot +0 -0
  210. data/web/public/editor-app/libs/bootstrap_3.1.1/fonts/glyphicons-halflings-regular.svg +229 -0
  211. data/web/public/editor-app/libs/bootstrap_3.1.1/fonts/glyphicons-halflings-regular.ttf +0 -0
  212. data/web/public/editor-app/libs/bootstrap_3.1.1/fonts/glyphicons-halflings-regular.woff +0 -0
  213. data/web/public/editor-app/libs/bootstrap_3.1.1/js/bootstrap.js +1951 -0
  214. data/web/public/editor-app/libs/bootstrap_3.1.1/js/bootstrap.min.js +6 -0
  215. data/web/public/editor-app/libs/es5-shim-15.3.4.5/.bower.json +14 -0
  216. data/web/public/editor-app/libs/es5-shim-15.3.4.5/.gitignore +2 -0
  217. data/web/public/editor-app/libs/es5-shim-15.3.4.5/CHANGES +93 -0
  218. data/web/public/editor-app/libs/es5-shim-15.3.4.5/CONTRIBUTORS.md +25 -0
  219. data/web/public/editor-app/libs/es5-shim-15.3.4.5/LICENSE +19 -0
  220. data/web/public/editor-app/libs/es5-shim-15.3.4.5/README.md +161 -0
  221. data/web/public/editor-app/libs/es5-shim-15.3.4.5/es5-sham.js +444 -0
  222. data/web/public/editor-app/libs/es5-shim-15.3.4.5/es5-sham.map +1 -0
  223. data/web/public/editor-app/libs/es5-shim-15.3.4.5/es5-sham.min.js +4 -0
  224. data/web/public/editor-app/libs/es5-shim-15.3.4.5/es5-shim.js +1314 -0
  225. data/web/public/editor-app/libs/es5-shim-15.3.4.5/es5-shim.map +1 -0
  226. data/web/public/editor-app/libs/es5-shim-15.3.4.5/es5-shim.min.js +4 -0
  227. data/web/public/editor-app/libs/es5-shim-15.3.4.5/package.json +34 -0
  228. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/helpers/h-kill.js +64 -0
  229. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/helpers/h-matchers.js +34 -0
  230. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/helpers/h.js +3 -0
  231. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/index.html +64 -0
  232. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/index.min.html +63 -0
  233. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/lib/jasmine-html.js +190 -0
  234. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/lib/jasmine.css +166 -0
  235. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/lib/jasmine.js +2477 -0
  236. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/lib/jasmine_favicon.png +0 -0
  237. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/lib/json2.js +478 -0
  238. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/spec/s-array.js +1223 -0
  239. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/spec/s-date.js +152 -0
  240. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/spec/s-function.js +147 -0
  241. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/spec/s-number.js +14 -0
  242. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/spec/s-object.js +181 -0
  243. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/spec/s-string.js +204 -0
  244. data/web/public/editor-app/libs/jquery-ui-1.10.3.custom.min.js +6 -0
  245. data/web/public/editor-app/libs/jquery.autogrow-textarea.js +61 -0
  246. data/web/public/editor-app/libs/jquery_1.11.0/jquery.js +9789 -0
  247. data/web/public/editor-app/libs/jquery_1.11.0/jquery.min.js +4 -0
  248. data/web/public/editor-app/libs/jquery_1.11.0/jquery.min.map +1 -0
  249. data/web/public/editor-app/libs/json3_3.2.6/LICENSE +20 -0
  250. data/web/public/editor-app/libs/json3_3.2.6/lib/json3.js +861 -0
  251. data/web/public/editor-app/libs/json3_3.2.6/lib/json3.min.js +18 -0
  252. data/web/public/editor-app/libs/momentjs_2.5.1/momentjs.min.js +6 -0
  253. data/web/public/editor-app/libs/mousetrap-1.4.5.min.js +9 -0
  254. data/web/public/editor-app/libs/ng-grid-2.0.7-min.js +2 -0
  255. data/web/public/editor-app/libs/ng-grid-2.0.7.min.css +1 -0
  256. data/web/public/editor-app/libs/path_parser.js +30 -0
  257. data/web/public/editor-app/libs/prototype-1.5.1.js +3272 -0
  258. data/web/public/editor-app/libs/ui-utils.min-0.0.4.js +7 -0
  259. data/web/public/editor-app/partials/root-stencil-item-template.html +11 -0
  260. data/web/public/editor-app/partials/stencil-item-template.html +27 -0
  261. data/web/public/editor-app/plugins.xml +58 -0
  262. data/web/public/editor-app/popups/icon-template.html +3 -0
  263. data/web/public/editor-app/popups/save-model.html +41 -0
  264. data/web/public/editor-app/popups/select-shape.html +20 -0
  265. data/web/public/editor-app/popups/unsaved-changes.html +22 -0
  266. data/web/public/editor-app/select-shape-controller.js +314 -0
  267. data/web/public/editor-app/stencil-controller.js +1421 -0
  268. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/event.subprocess.collapsed.png +0 -0
  269. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/event.subprocess.png +0 -0
  270. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/expanded.subprocess.png +0 -0
  271. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.business.rule.png +0 -0
  272. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.camel.png +0 -0
  273. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.manual.png +0 -0
  274. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.mule.png +0 -0
  275. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.receive.png +0 -0
  276. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.script.png +0 -0
  277. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.send.png +0 -0
  278. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.service.png +0 -0
  279. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.shell.png +0 -0
  280. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.user.png +0 -0
  281. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/subprocess.png +0 -0
  282. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/task.png +0 -0
  283. data/web/public/editor-app/stencilsets/bpmn2.0/icons/artifact/text.annotation.png +0 -0
  284. data/web/public/editor-app/stencilsets/bpmn2.0/icons/catching/cancel.png +0 -0
  285. data/web/public/editor-app/stencilsets/bpmn2.0/icons/catching/compensation.png +0 -0
  286. data/web/public/editor-app/stencilsets/bpmn2.0/icons/catching/error.png +0 -0
  287. data/web/public/editor-app/stencilsets/bpmn2.0/icons/catching/message.png +0 -0
  288. data/web/public/editor-app/stencilsets/bpmn2.0/icons/catching/signal.png +0 -0
  289. data/web/public/editor-app/stencilsets/bpmn2.0/icons/catching/timer.png +0 -0
  290. data/web/public/editor-app/stencilsets/bpmn2.0/icons/connector/association.undirected.png +0 -0
  291. data/web/public/editor-app/stencilsets/bpmn2.0/icons/connector/association.unidirectional.png +0 -0
  292. data/web/public/editor-app/stencilsets/bpmn2.0/icons/connector/messageflow.png +0 -0
  293. data/web/public/editor-app/stencilsets/bpmn2.0/icons/connector/sequenceflow.png +0 -0
  294. data/web/public/editor-app/stencilsets/bpmn2.0/icons/dataobject/data.store.png +0 -0
  295. data/web/public/editor-app/stencilsets/bpmn2.0/icons/diagram.png +0 -0
  296. data/web/public/editor-app/stencilsets/bpmn2.0/icons/endevent/cancel.png +0 -0
  297. data/web/public/editor-app/stencilsets/bpmn2.0/icons/endevent/error.png +0 -0
  298. data/web/public/editor-app/stencilsets/bpmn2.0/icons/endevent/none.png +0 -0
  299. data/web/public/editor-app/stencilsets/bpmn2.0/icons/endevent/terminate.png +0 -0
  300. data/web/public/editor-app/stencilsets/bpmn2.0/icons/gateway/eventbased.png +0 -0
  301. data/web/public/editor-app/stencilsets/bpmn2.0/icons/gateway/exclusive.databased.png +0 -0
  302. data/web/public/editor-app/stencilsets/bpmn2.0/icons/gateway/inclusive.png +0 -0
  303. data/web/public/editor-app/stencilsets/bpmn2.0/icons/gateway/parallel.png +0 -0
  304. data/web/public/editor-app/stencilsets/bpmn2.0/icons/startevent/error.png +0 -0
  305. data/web/public/editor-app/stencilsets/bpmn2.0/icons/startevent/message.png +0 -0
  306. data/web/public/editor-app/stencilsets/bpmn2.0/icons/startevent/none.png +0 -0
  307. data/web/public/editor-app/stencilsets/bpmn2.0/icons/startevent/signal.png +0 -0
  308. data/web/public/editor-app/stencilsets/bpmn2.0/icons/startevent/timer.png +0 -0
  309. data/web/public/editor-app/stencilsets/bpmn2.0/icons/swimlane/lane.png +0 -0
  310. data/web/public/editor-app/stencilsets/bpmn2.0/icons/swimlane/pool.png +0 -0
  311. data/web/public/editor-app/stencilsets/bpmn2.0/icons/throwing/none.png +0 -0
  312. data/web/public/editor-app/stencilsets/bpmn2.0/icons/throwing/signal.png +0 -0
  313. data/web/public/editor-app/toolbar-controller.js +162 -0
  314. data/web/public/modeler.html +140 -0
  315. data/web/views/models/index.erb +32 -0
  316. data/web/views/models/new.erb +15 -0
  317. metadata +334 -10
@@ -0,0 +1,603 @@
1
+ /**
2
+ * Web color table
3
+ *
4
+ * @author Dmitry Farafonov
5
+ */
6
+
7
+ var Color = {
8
+ /**
9
+ * The color white. In the default sRGB space.
10
+ */
11
+ white : Raphael.getRGB("rgb(255,255,255)"),
12
+
13
+ /**
14
+ * The color white. In the default sRGB space.
15
+ */
16
+ WHITE : this.white,
17
+
18
+ /**
19
+ * The color light gray. In the default sRGB space.
20
+ */
21
+ lightGray : Raphael.getRGB("rgb(192, 192, 192)"),
22
+
23
+ /**
24
+ * The color light gray. In the default sRGB space.
25
+ */
26
+ LIGHT_GRAY : this.lightGray,
27
+
28
+ /**
29
+ * The color gray. In the default sRGB space.
30
+ */
31
+ gray : Raphael.getRGB("rgb(128, 128, 128)"),
32
+
33
+ /**
34
+ * The color gray. In the default sRGB space.
35
+ */
36
+ GRAY : this.gray,
37
+
38
+ /**
39
+ * The color dark gray. In the default sRGB space.
40
+ */
41
+ darkGray : Raphael.getRGB("rgb(64, 64, 64)"),
42
+
43
+ /**
44
+ * The color dark gray. In the default sRGB space.
45
+ */
46
+ DARK_GRAY : this.darkGray,
47
+
48
+ /**
49
+ * The color black. In the default sRGB space.
50
+ */
51
+ black : Raphael.getRGB("rgb(0, 0, 0)"),
52
+
53
+ /**
54
+ * The color black. In the default sRGB space.
55
+ */
56
+ BLACK : this.black,
57
+
58
+ /**
59
+ * The color red. In the default sRGB space.
60
+ */
61
+ red : Raphael.getRGB("rgb(255, 0, 0)"),
62
+
63
+ /**
64
+ * The color red. In the default sRGB space.
65
+ */
66
+ RED : this.red,
67
+
68
+ /**
69
+ * The color pink. In the default sRGB space.
70
+ */
71
+ pink : Raphael.getRGB("rgb(255, 175, 175)"),
72
+
73
+ /**
74
+ * The color pink. In the default sRGB space.
75
+ */
76
+ PINK : this.pink,
77
+
78
+ /**
79
+ * The color orange. In the default sRGB space.
80
+ */
81
+ orange : Raphael.getRGB("rgb(255, 200, 0)"),
82
+
83
+ /**
84
+ * The color orange. In the default sRGB space.
85
+ */
86
+ ORANGE : this.orange,
87
+
88
+ /**
89
+ * The color yellow. In the default sRGB space.
90
+ */
91
+ yellow : Raphael.getRGB("rgb(255, 255, 0)"),
92
+
93
+ /**
94
+ * The color yellow. In the default sRGB space.
95
+ */
96
+ YELLOW : this.yellow,
97
+
98
+ /**
99
+ * The color green. In the default sRGB space.
100
+ */
101
+ green : Raphael.getRGB("rgb(0, 255, 0)"),
102
+
103
+ /**
104
+ * The color green. In the default sRGB space.
105
+ */
106
+ GREEN : this.green,
107
+
108
+ /**
109
+ * The color magenta. In the default sRGB space.
110
+ */
111
+ magenta : Raphael.getRGB("rgb(255, 0, 255)"),
112
+
113
+ /**
114
+ * The color magenta. In the default sRGB space.
115
+ */
116
+ MAGENTA : this.magenta,
117
+
118
+ /**
119
+ * The color cyan. In the default sRGB space.
120
+ */
121
+ cyan : Raphael.getRGB("rgb(0, 255, 255)"),
122
+
123
+ /**
124
+ * The color cyan. In the default sRGB space.
125
+ */
126
+ CYAN : this.cyan,
127
+
128
+ /**
129
+ * The color blue. In the default sRGB space.
130
+ */
131
+ blue : Raphael.getRGB("rgb(0, 0, 255)"),
132
+
133
+ /**
134
+ * The color blue. In the default sRGB space.
135
+ */
136
+ BLUE : this.blue,
137
+
138
+ /************************************************************************/
139
+
140
+ // http://www.stm.dp.ua/web-design/color-html.php
141
+
142
+ Snow : Raphael.getRGB("#FFFAFA "), // 255 250 250
143
+ GhostWhite : Raphael.getRGB("#F8F8FF "), // 248 248 255
144
+ WhiteSmoke : Raphael.getRGB("#F5F5F5 "), // 245 245 245
145
+ Gainsboro : Raphael.getRGB("#DCDCDC "), // 220 220 220
146
+ FloralWhite : Raphael.getRGB("#FFFAF0 "), // 255 250 240
147
+ OldLace : Raphael.getRGB("#FDF5E6 "), // 253 245 230
148
+ Linen : Raphael.getRGB("#FAF0E6 "), // 250 240 230
149
+ AntiqueWhite : Raphael.getRGB("#FAEBD7 "), // 250 235 215
150
+ PapayaWhip : Raphael.getRGB("#FFEFD5 "), // 255 239 213
151
+ BlanchedAlmond : Raphael.getRGB("#FFEBCD "), // 255 235 205
152
+ Bisque : Raphael.getRGB("#FFE4C4 "), // 255 228 196
153
+ PeachPuff : Raphael.getRGB("#FFDAB9 "), // 255 218 185
154
+ NavajoWhite : Raphael.getRGB("#FFDEAD "), // 255 222 173
155
+ Moccasin : Raphael.getRGB("#FFE4B5 "), // 255 228 181
156
+ Cornsilk : Raphael.getRGB("#FFF8DC "), // 255 248 220
157
+ Ivory : Raphael.getRGB("#FFFFF0 "), // 255 255 240
158
+ LemonChiffon : Raphael.getRGB("#FFFACD "), // 255 250 205
159
+ Seashell : Raphael.getRGB("#FFF5EE "), // 255 245 238
160
+ Honeydew : Raphael.getRGB("#F0FFF0 "), // 240 255 240
161
+ MintCream : Raphael.getRGB("#F5FFFA "), // 245 255 250
162
+ Azure : Raphael.getRGB("#F0FFFF "), // 240 255 255
163
+ AliceBlue : Raphael.getRGB("#F0F8FF "), // 240 248 255
164
+ lavender : Raphael.getRGB("#E6E6FA "), // 230 230 250
165
+ LavenderBlush : Raphael.getRGB("#FFF0F5 "), // 255 240 245
166
+ MistyRose : Raphael.getRGB("#FFE4E1 "), // 255 228 225
167
+ White : Raphael.getRGB("#FFFFFF "), // 255 255 255
168
+ Black : Raphael.getRGB("#000000 "), // 0 0 0
169
+ DarkSlateGray : Raphael.getRGB("#2F4F4F "), // 47 79 79
170
+ DimGrey : Raphael.getRGB("#696969 "), // 105 105 105
171
+ SlateGrey : Raphael.getRGB("#708090 "), // 112 128 144
172
+ LightSlateGray : Raphael.getRGB("#778899 "), // 119 136 153
173
+ Grey : Raphael.getRGB("#BEBEBE "), // 190 190 190
174
+ LightGray : Raphael.getRGB("#D3D3D3 "), // 211 211 211
175
+ MidnightBlue : Raphael.getRGB("#191970 "), // 25 25 112
176
+ NavyBlue : Raphael.getRGB("#000080 "), // 0 0 128
177
+ CornflowerBlue : Raphael.getRGB("#6495ED "), // 100 149 237
178
+ DarkSlateBlue : Raphael.getRGB("#483D8B "), // 72 61 139
179
+ SlateBlue : Raphael.getRGB("#6A5ACD "), // 106 90 205
180
+ MediumSlateBlue : Raphael.getRGB("#7B68EE "), // 123 104 238
181
+ LightSlateBlue : Raphael.getRGB("#8470FF "), // 132 112 255
182
+ MediumBlue : Raphael.getRGB("#0000CD "), // 0 0 205
183
+ RoyalBlue : Raphael.getRGB("#4169E1 "), // 65 105 225
184
+ Blue : Raphael.getRGB("#0000FF "), // 0 0 255
185
+ DodgerBlue : Raphael.getRGB("#1E90FF "), // 30 144 255
186
+ DeepSkyBlue : Raphael.getRGB("#00BFFF "), // 0 191 255
187
+ SkyBlue : Raphael.getRGB("#87CEEB "), // 135 206 235
188
+ LightSkyBlue : Raphael.getRGB("#87CEFA "), // 135 206 250
189
+ SteelBlue : Raphael.getRGB("#4682B4 "), // 70 130 180
190
+ LightSteelBlue : Raphael.getRGB("#B0C4DE "), // 176 196 222
191
+ LightBlue : Raphael.getRGB("#ADD8E6 "), // 173 216 230
192
+ PowderBlue : Raphael.getRGB("#B0E0E6 "), // 176 224 230
193
+ PaleTurquoise : Raphael.getRGB("#AFEEEE "), // 175 238 238
194
+ DarkTurquoise : Raphael.getRGB("#00CED1 "), // 0 206 209
195
+ MediumTurquoise : Raphael.getRGB("#48D1CC "), // 72 209 204
196
+ Turquoise : Raphael.getRGB("#40E0D0 "), // 64 224 208
197
+ Cyan : Raphael.getRGB("#00FFFF "), // 0 255 255
198
+ LightCyan : Raphael.getRGB("#E0FFFF "), // 224 255 255
199
+ CadetBlue : Raphael.getRGB("#5F9EA0 "), // 95 158 160
200
+ MediumAquamarine: Raphael.getRGB("#66CDAA "), // 102 205 170
201
+ Aquamarine : Raphael.getRGB("#7FFFD4 "), // 127 255 212
202
+ DarkGreen : Raphael.getRGB("#006400 "), // 0 100 0
203
+ DarkOliveGreen : Raphael.getRGB("#556B2F "), // 85 107 47
204
+ DarkSeaGreen : Raphael.getRGB("#8FBC8F "), // 143 188 143
205
+ SeaGreen : Raphael.getRGB("#2E8B57 "), // 46 139 87
206
+ MediumSeaGreen : Raphael.getRGB("#3CB371 "), // 60 179 113
207
+ LightSeaGreen : Raphael.getRGB("#20B2AA "), // 32 178 170
208
+ PaleGreen : Raphael.getRGB("#98FB98 "), // 152 251 152
209
+ SpringGreen : Raphael.getRGB("#00FF7F "), // 0 255 127
210
+ LawnGreen : Raphael.getRGB("#7CFC00 "), // 124 252 0
211
+ Green : Raphael.getRGB("#00FF00 "), // 0 255 0
212
+ Chartreuse : Raphael.getRGB("#7FFF00 "), // 127 255 0
213
+ MedSpringGreen : Raphael.getRGB("#00FA9A "), // 0 250 154
214
+ GreenYellow : Raphael.getRGB("#ADFF2F "), // 173 255 47
215
+ LimeGreen : Raphael.getRGB("#32CD32 "), // 50 205 50
216
+ YellowGreen : Raphael.getRGB("#9ACD32 "), // 154 205 50
217
+ ForestGreen : Raphael.getRGB("#228B22 "), // 34 139 34
218
+ OliveDrab : Raphael.getRGB("#6B8E23 "), // 107 142 35
219
+ DarkKhaki : Raphael.getRGB("#BDB76B "), // 189 183 107
220
+ PaleGoldenrod : Raphael.getRGB("#EEE8AA "), // 238 232 170
221
+ LtGoldenrodYello: Raphael.getRGB("#FAFAD2 "), // 250 250 210
222
+ LightYellow : Raphael.getRGB("#FFFFE0 "), // 255 255 224
223
+ Yellow : Raphael.getRGB("#FFFF00 "), // 255 255 0
224
+ Gold : Raphael.getRGB("#FFD700 "), // 255 215 0
225
+ LightGoldenrod : Raphael.getRGB("#EEDD82 "), // 238 221 130
226
+ goldenrod : Raphael.getRGB("#DAA520 "), // 218 165 32
227
+ DarkGoldenrod : Raphael.getRGB("#B8860B "), // 184 134 11
228
+ RosyBrown : Raphael.getRGB("#BC8F8F "), // 188 143 143
229
+ IndianRed : Raphael.getRGB("#CD5C5C "), // 205 92 92
230
+ SaddleBrown : Raphael.getRGB("#8B4513 "), // 139 69 19
231
+ Sienna : Raphael.getRGB("#A0522D "), // 160 82 45
232
+ Peru : Raphael.getRGB("#CD853F "), // 205 133 63
233
+ Burlywood : Raphael.getRGB("#DEB887 "), // 222 184 135
234
+ Beige : Raphael.getRGB("#F5F5DC "), // 245 245 220
235
+ Wheat : Raphael.getRGB("#F5DEB3 "), // 245 222 179
236
+ SandyBrown : Raphael.getRGB("#F4A460 "), // 244 164 96
237
+ Tan : Raphael.getRGB("#D2B48C "), // 210 180 140
238
+ Chocolate : Raphael.getRGB("#D2691E "), // 210 105 30
239
+ Firebrick : Raphael.getRGB("#B22222 "), // 178 34 34
240
+ Brown : Raphael.getRGB("#A52A2A "), // 165 42 42
241
+ DarkSalmon : Raphael.getRGB("#E9967A "), // 233 150 122
242
+ Salmon : Raphael.getRGB("#FA8072 "), // 250 128 114
243
+ LightSalmon : Raphael.getRGB("#FFA07A "), // 255 160 122
244
+ Orange : Raphael.getRGB("#FFA500 "), // 255 165 0
245
+ DarkOrange : Raphael.getRGB("#FF8C00 "), // 255 140 0
246
+ Coral : Raphael.getRGB("#FF7F50 "), // 255 127 80
247
+ LightCoral : Raphael.getRGB("#F08080 "), // 240 128 128
248
+ Tomato : Raphael.getRGB("#FF6347 "), // 255 99 71
249
+ OrangeRed : Raphael.getRGB("#FF4500 "), // 255 69 0
250
+ Red : Raphael.getRGB("#FF0000 "), // 255 0 0
251
+ HotPink : Raphael.getRGB("#FF69B4 "), // 255 105 180
252
+ DeepPink : Raphael.getRGB("#FF1493 "), // 255 20 147
253
+ Pink : Raphael.getRGB("#FFC0CB "), // 255 192 203
254
+ LightPink : Raphael.getRGB("#FFB6C1 "), // 255 182 193
255
+ PaleVioletRed : Raphael.getRGB("#DB7093 "), // 219 112 147
256
+ Maroon : Raphael.getRGB("#B03060 "), // 176 48 96
257
+ MediumVioletRed : Raphael.getRGB("#C71585 "), // 199 21 133
258
+ VioletRed : Raphael.getRGB("#D02090 "), // 208 32 144
259
+ Magenta : Raphael.getRGB("#FF00FF "), // 255 0 255
260
+ Violet : Raphael.getRGB("#EE82EE "), // 238 130 238
261
+ Plum : Raphael.getRGB("#DDA0DD "), // 221 160 221
262
+ Orchid : Raphael.getRGB("#DA70D6 "), // 218 112 214
263
+ MediumOrchid : Raphael.getRGB("#BA55D3 "), // 186 85 211
264
+ DarkOrchid : Raphael.getRGB("#9932CC "), // 153 50 204
265
+ DarkViolet : Raphael.getRGB("#9400D3 "), // 148 0 211
266
+ BlueViolet : Raphael.getRGB("#8A2BE2 "), // 138 43 226
267
+ Purple : Raphael.getRGB("#A020F0 "), // 160 32 240
268
+ MediumPurple : Raphael.getRGB("#9370DB "), // 147 112 219
269
+ Thistle : Raphael.getRGB("#D8BFD8 "), // 216 191 216
270
+ Snow1 : Raphael.getRGB("#FFFAFA "), // 255 250 250
271
+ Snow2 : Raphael.getRGB("#EEE9E9 "), // 238 233 233
272
+ Snow3 : Raphael.getRGB("#CDC9C9 "), // 205 201 201
273
+ Snow4 : Raphael.getRGB("#8B8989 "), // 139 137 137
274
+ Seashell1 : Raphael.getRGB("#FFF5EE "), // 255 245 238
275
+ Seashell2 : Raphael.getRGB("#EEE5DE "), // 238 229 222
276
+ Seashell3 : Raphael.getRGB("#CDC5BF "), // 205 197 191
277
+ Seashell4 : Raphael.getRGB("#8B8682 "), // 139 134 130
278
+ AntiqueWhite1 : Raphael.getRGB("#FFEFDB "), // 255 239 219
279
+ AntiqueWhite2 : Raphael.getRGB("#EEDFCC "), // 238 223 204
280
+ AntiqueWhite3 : Raphael.getRGB("#CDC0B0 "), // 205 192 176
281
+ AntiqueWhite4 : Raphael.getRGB("#8B8378 "), // 139 131 120
282
+ Bisque1 : Raphael.getRGB("#FFE4C4 "), // 255 228 196
283
+ Bisque2 : Raphael.getRGB("#EED5B7 "), // 238 213 183
284
+ Bisque3 : Raphael.getRGB("#CDB79E "), // 205 183 158
285
+ Bisque4 : Raphael.getRGB("#8B7D6B "), // 139 125 107
286
+ PeachPuff1 : Raphael.getRGB("#FFDAB9 "), // 255 218 185
287
+ PeachPuff2 : Raphael.getRGB("#EECBAD "), // 238 203 173
288
+ PeachPuff3 : Raphael.getRGB("#CDAF95 "), // 205 175 149
289
+ PeachPuff4 : Raphael.getRGB("#8B7765 "), // 139 119 101
290
+ NavajoWhite1 : Raphael.getRGB("#FFDEAD "), // 255 222 173
291
+ NavajoWhite2 : Raphael.getRGB("#EECFA1 "), // 238 207 161
292
+ NavajoWhite3 : Raphael.getRGB("#CDB38B "), // 205 179 139
293
+ NavajoWhite4 : Raphael.getRGB("#8B795E "), // 139 121 94
294
+ LemonChiffon1 : Raphael.getRGB("#FFFACD "), // 255 250 205
295
+ LemonChiffon2 : Raphael.getRGB("#EEE9BF "), // 238 233 191
296
+ LemonChiffon3 : Raphael.getRGB("#CDC9A5 "), // 205 201 165
297
+ LemonChiffon4 : Raphael.getRGB("#8B8970 "), // 139 137 112
298
+ Cornsilk1 : Raphael.getRGB("#FFF8DC "), // 255 248 220
299
+ Cornsilk2 : Raphael.getRGB("#EEE8CD "), // 238 232 205
300
+ Cornsilk3 : Raphael.getRGB("#CDC8B1 "), // 205 200 177
301
+ Cornsilk4 : Raphael.getRGB("#8B8878 "), // 139 136 120
302
+ Ivory1 : Raphael.getRGB("#FFFFF0 "), // 255 255 240
303
+ Ivory2 : Raphael.getRGB("#EEEEE0 "), // 238 238 224
304
+ Ivory3 : Raphael.getRGB("#CDCDC1 "), // 205 205 193
305
+ Ivory4 : Raphael.getRGB("#8B8B83 "), // 139 139 131
306
+ Honeydew1 : Raphael.getRGB("#F0FFF0 "), // 240 255 240
307
+ Honeydew2 : Raphael.getRGB("#E0EEE0 "), // 224 238 224
308
+ Honeydew3 : Raphael.getRGB("#C1CDC1 "), // 193 205 193
309
+ Honeydew4 : Raphael.getRGB("#838B83 "), // 131 139 131
310
+ LavenderBlush1 : Raphael.getRGB("#FFF0F5 "), // 255 240 245
311
+ LavenderBlush2 : Raphael.getRGB("#EEE0E5 "), // 238 224 229
312
+ LavenderBlush3 : Raphael.getRGB("#CDC1C5 "), // 205 193 197
313
+ LavenderBlush4 : Raphael.getRGB("#8B8386 "), // 139 131 134
314
+ MistyRose1 : Raphael.getRGB("#FFE4E1 "), // 255 228 225
315
+ MistyRose2 : Raphael.getRGB("#EED5D2 "), // 238 213 210
316
+ MistyRose3 : Raphael.getRGB("#CDB7B5 "), // 205 183 181
317
+ MistyRose4 : Raphael.getRGB("#8B7D7B "), // 139 125 123
318
+ Azure1 : Raphael.getRGB("#F0FFFF "), // 240 255 255
319
+ Azure2 : Raphael.getRGB("#E0EEEE "), // 224 238 238
320
+ Azure3 : Raphael.getRGB("#C1CDCD "), // 193 205 205
321
+ Azure4 : Raphael.getRGB("#838B8B "), // 131 139 139
322
+ SlateBlue1 : Raphael.getRGB("#836FFF "), // 131 111 255
323
+ SlateBlue2 : Raphael.getRGB("#7A67EE "), // 122 103 238
324
+ SlateBlue3 : Raphael.getRGB("#6959CD "), // 105 89 205
325
+ SlateBlue4 : Raphael.getRGB("#473C8B "), // 71 60 139
326
+ RoyalBlue1 : Raphael.getRGB("#4876FF "), // 72 118 255
327
+ RoyalBlue2 : Raphael.getRGB("#436EEE "), // 67 110 238
328
+ RoyalBlue3 : Raphael.getRGB("#3A5FCD "), // 58 95 205
329
+ RoyalBlue4 : Raphael.getRGB("#27408B "), // 39 64 139
330
+ Blue1 : Raphael.getRGB("#0000FF "), // 0 0 255
331
+ Blue2 : Raphael.getRGB("#0000EE "), // 0 0 238
332
+ Blue3 : Raphael.getRGB("#0000CD "), // 0 0 205
333
+ Blue4 : Raphael.getRGB("#00008B "), // 0 0 139
334
+ DodgerBlue1 : Raphael.getRGB("#1E90FF "), // 30 144 255
335
+ DodgerBlue2 : Raphael.getRGB("#1C86EE "), // 28 134 238
336
+ DodgerBlue3 : Raphael.getRGB("#1874CD "), // 24 116 205
337
+ DodgerBlue4 : Raphael.getRGB("#104E8B "), // 16 78 139
338
+ SteelBlue1 : Raphael.getRGB("#63B8FF "), // 99 184 255
339
+ SteelBlue2 : Raphael.getRGB("#5CACEE "), // 92 172 238
340
+ SteelBlue3 : Raphael.getRGB("#4F94CD "), // 79 148 205
341
+ SteelBlue4 : Raphael.getRGB("#36648B "), // 54 100 139
342
+ DeepSkyBlue1 : Raphael.getRGB("#00BFFF "), // 0 191 255
343
+ DeepSkyBlue2 : Raphael.getRGB("#00B2EE "), // 0 178 238
344
+ DeepSkyBlue3 : Raphael.getRGB("#009ACD "), // 0 154 205
345
+ DeepSkyBlue4 : Raphael.getRGB("#00688B "), // 0 104 139
346
+ SkyBlue1 : Raphael.getRGB("#87CEFF "), // 135 206 255
347
+ SkyBlue2 : Raphael.getRGB("#7EC0EE "), // 126 192 238
348
+ SkyBlue3 : Raphael.getRGB("#6CA6CD "), // 108 166 205
349
+ SkyBlue4 : Raphael.getRGB("#4A708B "), // 74 112 139
350
+ LightSkyBlue1 : Raphael.getRGB("#B0E2FF "), // 176 226 255
351
+ LightSkyBlue2 : Raphael.getRGB("#A4D3EE "), // 164 211 238
352
+ LightSkyBlue3 : Raphael.getRGB("#8DB6CD "), // 141 182 205
353
+ LightSkyBlue4 : Raphael.getRGB("#607B8B "), // 96 123 139
354
+ SlateGray1 : Raphael.getRGB("#C6E2FF "), // 198 226 255
355
+ SlateGray2 : Raphael.getRGB("#B9D3EE "), // 185 211 238
356
+ SlateGray3 : Raphael.getRGB("#9FB6CD "), // 159 182 205
357
+ SlateGray4 : Raphael.getRGB("#6C7B8B "), // 108 123 139
358
+ LightSteelBlue1 : Raphael.getRGB("#CAE1FF "), // 202 225 255
359
+ LightSteelBlue2 : Raphael.getRGB("#BCD2EE "), // 188 210 238
360
+ LightSteelBlue3 : Raphael.getRGB("#A2B5CD "), // 162 181 205
361
+ LightSteelBlue4 : Raphael.getRGB("#6E7B8B "), // 110 123 139
362
+ LightBlue1 : Raphael.getRGB("#BFEFFF "), // 191 239 255
363
+ LightBlue2 : Raphael.getRGB("#B2DFEE "), // 178 223 238
364
+ LightBlue3 : Raphael.getRGB("#9AC0CD "), // 154 192 205
365
+ LightBlue4 : Raphael.getRGB("#68838B "), // 104 131 139
366
+ LightCyan1 : Raphael.getRGB("#E0FFFF "), // 224 255 255
367
+ LightCyan2 : Raphael.getRGB("#D1EEEE "), // 209 238 238
368
+ LightCyan3 : Raphael.getRGB("#B4CDCD "), // 180 205 205
369
+ LightCyan4 : Raphael.getRGB("#7A8B8B "), // 122 139 139
370
+ PaleTurquoise1 : Raphael.getRGB("#BBFFFF "), // 187 255 255
371
+ PaleTurquoise2 : Raphael.getRGB("#AEEEEE "), // 174 238 238
372
+ PaleTurquoise3 : Raphael.getRGB("#96CDCD "), // 150 205 205
373
+ PaleTurquoise4 : Raphael.getRGB("#668B8B "), // 102 139 139
374
+ CadetBlue1 : Raphael.getRGB("#98F5FF "), // 152 245 255
375
+ CadetBlue2 : Raphael.getRGB("#8EE5EE "), // 142 229 238
376
+ CadetBlue3 : Raphael.getRGB("#7AC5CD "), // 122 197 205
377
+ CadetBlue4 : Raphael.getRGB("#53868B "), // 83 134 139
378
+ Turquoise1 : Raphael.getRGB("#00F5FF "), // 0 245 255
379
+ Turquoise2 : Raphael.getRGB("#00E5EE "), // 0 229 238
380
+ Turquoise3 : Raphael.getRGB("#00C5CD "), // 0 197 205
381
+ Turquoise4 : Raphael.getRGB("#00868B "), // 0 134 139
382
+ Cyan1 : Raphael.getRGB("#00FFFF "), // 0 255 255
383
+ Cyan2 : Raphael.getRGB("#00EEEE "), // 0 238 238
384
+ Cyan3 : Raphael.getRGB("#00CDCD "), // 0 205 205
385
+ Cyan4 : Raphael.getRGB("#008B8B "), // 0 139 139
386
+ DarkSlateGray1 : Raphael.getRGB("#97FFFF "), // 151 255 255
387
+ DarkSlateGray2 : Raphael.getRGB("#8DEEEE "), // 141 238 238
388
+ DarkSlateGray3 : Raphael.getRGB("#79CDCD "), // 121 205 205
389
+ DarkSlateGray4 : Raphael.getRGB("#528B8B "), // 82 139 139
390
+ Aquamarine1 : Raphael.getRGB("#7FFFD4 "), // 127 255 212
391
+ Aquamarine2 : Raphael.getRGB("#76EEC6 "), // 118 238 198
392
+ Aquamarine3 : Raphael.getRGB("#66CDAA "), // 102 205 170
393
+ Aquamarine4 : Raphael.getRGB("#458B74 "), // 69 139 116
394
+ DarkSeaGreen1 : Raphael.getRGB("#C1FFC1 "), // 193 255 193
395
+ DarkSeaGreen2 : Raphael.getRGB("#B4EEB4 "), // 180 238 180
396
+ DarkSeaGreen3 : Raphael.getRGB("#9BCD9B "), // 155 205 155
397
+ DarkSeaGreen4 : Raphael.getRGB("#698B69 "), // 105 139 105
398
+ SeaGreen1 : Raphael.getRGB("#54FF9F "), // 84 255 159
399
+ SeaGreen2 : Raphael.getRGB("#4EEE94 "), // 78 238 148
400
+ SeaGreen3 : Raphael.getRGB("#43CD80 "), // 67 205 128
401
+ SeaGreen4 : Raphael.getRGB("#2E8B57 "), // 46 139 87
402
+ PaleGreen1 : Raphael.getRGB("#9AFF9A "), // 154 255 154
403
+ PaleGreen2 : Raphael.getRGB("#90EE90 "), // 144 238 144
404
+ PaleGreen3 : Raphael.getRGB("#7CCD7C "), // 124 205 124
405
+ PaleGreen4 : Raphael.getRGB("#548B54 "), // 84 139 84
406
+ SpringGreen1 : Raphael.getRGB("#00FF7F "), // 0 255 127
407
+ SpringGreen2 : Raphael.getRGB("#00EE76 "), // 0 238 118
408
+ SpringGreen3 : Raphael.getRGB("#00CD66 "), // 0 205 102
409
+ SpringGreen4 : Raphael.getRGB("#008B45 "), // 0 139 69
410
+ Green1 : Raphael.getRGB("#00FF00 "), // 0 255 0
411
+ Green2 : Raphael.getRGB("#00EE00 "), // 0 238 0
412
+ Green3 : Raphael.getRGB("#00CD00 "), // 0 205 0
413
+ Green4 : Raphael.getRGB("#008B00 "), // 0 139 0
414
+ Chartreuse1 : Raphael.getRGB("#7FFF00 "), // 127 255 0
415
+ Chartreuse2 : Raphael.getRGB("#76EE00 "), // 118 238 0
416
+ Chartreuse3 : Raphael.getRGB("#66CD00 "), // 102 205 0
417
+ Chartreuse4 : Raphael.getRGB("#458B00 "), // 69 139 0
418
+ OliveDrab1 : Raphael.getRGB("#C0FF3E "), // 192 255 62
419
+ OliveDrab2 : Raphael.getRGB("#B3EE3A "), // 179 238 58
420
+ OliveDrab3 : Raphael.getRGB("#9ACD32 "), // 154 205 50
421
+ OliveDrab4 : Raphael.getRGB("#698B22 "), // 105 139 34
422
+ DarkOliveGreen1 : Raphael.getRGB("#CAFF70 "), // 202 255 112
423
+ DarkOliveGreen2 : Raphael.getRGB("#BCEE68 "), // 188 238 104
424
+ DarkOliveGreen3 : Raphael.getRGB("#A2CD5A "), // 162 205 90
425
+ DarkOliveGreen4 : Raphael.getRGB("#6E8B3D "), // 110 139 61
426
+ Khaki1 : Raphael.getRGB("#FFF68F "), // 255 246 143
427
+ Khaki2 : Raphael.getRGB("#EEE685 "), // 238 230 133
428
+ Khaki3 : Raphael.getRGB("#CDC673 "), // 205 198 115
429
+ Khaki4 : Raphael.getRGB("#8B864E "), // 139 134 78
430
+ LightGoldenrod1 : Raphael.getRGB("#FFEC8B "), // 255 236 139
431
+ LightGoldenrod2 : Raphael.getRGB("#EEDC82 "), // 238 220 130
432
+ LightGoldenrod3 : Raphael.getRGB("#CDBE70 "), // 205 190 112
433
+ LightGoldenrod4 : Raphael.getRGB("#8B814C "), // 139 129 76
434
+ LightYellow1 : Raphael.getRGB("#FFFFE0 "), // 255 255 224
435
+ LightYellow2 : Raphael.getRGB("#EEEED1 "), // 238 238 209
436
+ LightYellow3 : Raphael.getRGB("#CDCDB4 "), // 205 205 180
437
+ LightYellow4 : Raphael.getRGB("#8B8B7A "), // 139 139 122
438
+ Yellow1 : Raphael.getRGB("#FFFF00 "), // 255 255 0
439
+ Yellow2 : Raphael.getRGB("#EEEE00 "), // 238 238 0
440
+ Yellow3 : Raphael.getRGB("#CDCD00 "), // 205 205 0
441
+ Yellow4 : Raphael.getRGB("#8B8B00 "), // 139 139 0
442
+ Gold1 : Raphael.getRGB("#FFD700 "), // 255 215 0
443
+ Gold2 : Raphael.getRGB("#EEC900 "), // 238 201 0
444
+ Gold3 : Raphael.getRGB("#CDAD00 "), // 205 173 0
445
+ Gold4 : Raphael.getRGB("#8B7500 "), // 139 117 0
446
+ Goldenrod1 : Raphael.getRGB("#FFC125 "), // 255 193 37
447
+ Goldenrod2 : Raphael.getRGB("#EEB422 "), // 238 180 34
448
+ Goldenrod3 : Raphael.getRGB("#CD9B1D "), // 205 155 29
449
+ Goldenrod4 : Raphael.getRGB("#8B6914 "), // 139 105 20
450
+ DarkGoldenrod1 : Raphael.getRGB("#FFB90F "), // 255 185 15
451
+ DarkGoldenrod2 : Raphael.getRGB("#EEAD0E "), // 238 173 14
452
+ DarkGoldenrod3 : Raphael.getRGB("#CD950C "), // 205 149 12
453
+ DarkGoldenrod4 : Raphael.getRGB("#8B658B "), // 139 101 8
454
+ RosyBrown1 : Raphael.getRGB("#FFC1C1 "), // 255 193 193
455
+ RosyBrown2 : Raphael.getRGB("#EEB4B4 "), // 238 180 180
456
+ RosyBrown3 : Raphael.getRGB("#CD9B9B "), // 205 155 155
457
+ RosyBrown4 : Raphael.getRGB("#8B6969 "), // 139 105 105
458
+ IndianRed1 : Raphael.getRGB("#FF6A6A "), // 255 106 106
459
+ IndianRed2 : Raphael.getRGB("#EE6363 "), // 238 99 99
460
+ IndianRed3 : Raphael.getRGB("#CD5555 "), // 205 85 85
461
+ IndianRed4 : Raphael.getRGB("#8B3A3A "), // 139 58 58
462
+ Sienna1 : Raphael.getRGB("#FF8247 "), // 255 130 71
463
+ Sienna2 : Raphael.getRGB("#EE7942 "), // 238 121 66
464
+ Sienna3 : Raphael.getRGB("#CD6839 "), // 205 104 57
465
+ Sienna4 : Raphael.getRGB("#8B4726 "), // 139 71 38
466
+ Burlywood1 : Raphael.getRGB("#FFD39B "), // 255 211 155
467
+ Burlywood2 : Raphael.getRGB("#EEC591 "), // 238 197 145
468
+ Burlywood3 : Raphael.getRGB("#CDAA7D "), // 205 170 125
469
+ Burlywood4 : Raphael.getRGB("#8B7355 "), // 139 115 85
470
+ Wheat1 : Raphael.getRGB("#FFE7BA "), // 255 231 186
471
+ Wheat2 : Raphael.getRGB("#EED8AE "), // 238 216 174
472
+ Wheat3 : Raphael.getRGB("#CDBA96 "), // 205 186 150
473
+ Wheat4 : Raphael.getRGB("#8B7E66 "), // 139 126 102
474
+ Tan1 : Raphael.getRGB("#FFA54F "), // 255 165 79
475
+ Tan2 : Raphael.getRGB("#EE9A49 "), // 238 154 73
476
+ Tan3 : Raphael.getRGB("#CD853F "), // 205 133 63
477
+ Tan4 : Raphael.getRGB("#8B5A2B "), // 139 90 43
478
+ Chocolate1 : Raphael.getRGB("#FF7F24 "), // 255 127 36
479
+ Chocolate2 : Raphael.getRGB("#EE7621 "), // 238 118 33
480
+ Chocolate3 : Raphael.getRGB("#CD661D "), // 205 102 29
481
+ Chocolate4 : Raphael.getRGB("#8B4513 "), // 139 69 19
482
+ Firebrick1 : Raphael.getRGB("#FF3030 "), // 255 48 48
483
+ Firebrick2 : Raphael.getRGB("#EE2C2C "), // 238 44 44
484
+ Firebrick3 : Raphael.getRGB("#CD2626 "), // 205 38 38
485
+ Firebrick4 : Raphael.getRGB("#8B1A1A "), // 139 26 26
486
+ Brown1 : Raphael.getRGB("#FF4040 "), // 255 64 64
487
+ Brown2 : Raphael.getRGB("#EE3B3B "), // 238 59 59
488
+ Brown3 : Raphael.getRGB("#CD3333 "), // 205 51 51
489
+ Brown4 : Raphael.getRGB("#8B2323 "), // 139 35 35
490
+ Salmon1 : Raphael.getRGB("#FF8C69 "), // 255 140 105
491
+ Salmon2 : Raphael.getRGB("#EE8262 "), // 238 130 98
492
+ Salmon3 : Raphael.getRGB("#CD7054 "), // 205 112 84
493
+ Salmon4 : Raphael.getRGB("#8B4C39 "), // 139 76 57
494
+ LightSalmon1 : Raphael.getRGB("#FFA07A "), // 255 160 122
495
+ LightSalmon2 : Raphael.getRGB("#EE9572 "), // 238 149 114
496
+ LightSalmon3 : Raphael.getRGB("#CD8162 "), // 205 129 98
497
+ LightSalmon4 : Raphael.getRGB("#8B5742 "), // 139 87 66
498
+ Orange1 : Raphael.getRGB("#FFA500 "), // 255 165 0
499
+ Orange2 : Raphael.getRGB("#EE9A00 "), // 238 154 0
500
+ Orange3 : Raphael.getRGB("#CD8500 "), // 205 133 0
501
+ Orange4 : Raphael.getRGB("#8B5A00 "), // 139 90 0
502
+ DarkOrange1 : Raphael.getRGB("#FF7F00 "), // 255 127 0
503
+ DarkOrange2 : Raphael.getRGB("#EE7600 "), // 238 118 0
504
+ DarkOrange3 : Raphael.getRGB("#CD6600 "), // 205 102 0
505
+ DarkOrange4 : Raphael.getRGB("#8B4500 "), // 139 69 0
506
+ Coral1 : Raphael.getRGB("#FF7256 "), // 255 114 86
507
+ Coral2 : Raphael.getRGB("#EE6A50 "), // 238 106 80
508
+ Coral3 : Raphael.getRGB("#CD5B45 "), // 205 91 69
509
+ Coral4 : Raphael.getRGB("#8B3E2F "), // 139 62 47
510
+ Tomato1 : Raphael.getRGB("#FF6347 "), // 255 99 71
511
+ Tomato2 : Raphael.getRGB("#EE5C42 "), // 238 92 66
512
+ Tomato3 : Raphael.getRGB("#CD4F39 "), // 205 79 57
513
+ Tomato4 : Raphael.getRGB("#8B3626 "), // 139 54 38
514
+ OrangeRed1 : Raphael.getRGB("#FF4500 "), // 255 69 0
515
+ OrangeRed2 : Raphael.getRGB("#EE4000 "), // 238 64 0
516
+ OrangeRed3 : Raphael.getRGB("#CD3700 "), // 205 55 0
517
+ OrangeRed4 : Raphael.getRGB("#8B2500 "), // 139 37 0
518
+ Red1 : Raphael.getRGB("#FF0000 "), // 255 0 0
519
+ Red2 : Raphael.getRGB("#EE0000 "), // 238 0 0
520
+ Red3 : Raphael.getRGB("#CD0000 "), // 205 0 0
521
+ Red4 : Raphael.getRGB("#8B0000 "), // 139 0 0
522
+ DeepPink1 : Raphael.getRGB("#FF1493 "), // 255 20 147
523
+ DeepPink2 : Raphael.getRGB("#EE1289 "), // 238 18 137
524
+ DeepPink3 : Raphael.getRGB("#CD1076 "), // 205 16 118
525
+ DeepPink4 : Raphael.getRGB("#8B0A50 "), // 139 10 80
526
+ HotPink1 : Raphael.getRGB("#FF6EB4 "), // 255 110 180
527
+ HotPink2 : Raphael.getRGB("#EE6AA7 "), // 238 106 167
528
+ HotPink3 : Raphael.getRGB("#CD6090 "), // 205 96 144
529
+ HotPink4 : Raphael.getRGB("#8B3A62 "), // 139 58 98
530
+ Pink1 : Raphael.getRGB("#FFB5C5 "), // 255 181 197
531
+ Pink2 : Raphael.getRGB("#EEA9B8 "), // 238 169 184
532
+ Pink3 : Raphael.getRGB("#CD919E "), // 205 145 158
533
+ Pink4 : Raphael.getRGB("#8B636C "), // 139 99 108
534
+ LightPink1 : Raphael.getRGB("#FFAEB9 "), // 255 174 185
535
+ LightPink2 : Raphael.getRGB("#EEA2AD "), // 238 162 173
536
+ LightPink3 : Raphael.getRGB("#CD8C95 "), // 205 140 149
537
+ LightPink4 : Raphael.getRGB("#8B5F65 "), // 139 95 101
538
+ PaleVioletRed1 : Raphael.getRGB("#FF82AB "), // 255 130 171
539
+ PaleVioletRed2 : Raphael.getRGB("#EE799F "), // 238 121 159
540
+ PaleVioletRed3 : Raphael.getRGB("#CD6889 "), // 205 104 137
541
+ PaleVioletRed4 : Raphael.getRGB("#8B475D "), // 139 71 93
542
+ Maroon1 : Raphael.getRGB("#FF34B3 "), // 255 52 179
543
+ Maroon2 : Raphael.getRGB("#EE30A7 "), // 238 48 167
544
+ Maroon3 : Raphael.getRGB("#CD2990 "), // 205 41 144
545
+ Maroon4 : Raphael.getRGB("#8B1C62 "), // 139 28 98
546
+ VioletRed1 : Raphael.getRGB("#FF3E96 "), // 255 62 150
547
+ VioletRed2 : Raphael.getRGB("#EE3A8C "), // 238 58 140
548
+ VioletRed3 : Raphael.getRGB("#CD3278 "), // 205 50 120
549
+ VioletRed4 : Raphael.getRGB("#8B2252 "), // 139 34 82
550
+ Magenta1 : Raphael.getRGB("#FF00FF "), // 255 0 255
551
+ Magenta2 : Raphael.getRGB("#EE00EE "), // 238 0 238
552
+ Magenta3 : Raphael.getRGB("#CD00CD "), // 205 0 205
553
+ Magenta4 : Raphael.getRGB("#8B008B "), // 139 0 139
554
+ Orchid1 : Raphael.getRGB("#FF83FA "), // 255 131 250
555
+ Orchid2 : Raphael.getRGB("#EE7AE9 "), // 238 122 233
556
+ Orchid3 : Raphael.getRGB("#CD69C9 "), // 205 105 201
557
+ Orchid4 : Raphael.getRGB("#8B4789 "), // 139 71 137
558
+ Plum1 : Raphael.getRGB("#FFBBFF "), // 255 187 255
559
+ Plum2 : Raphael.getRGB("#EEAEEE "), // 238 174 238
560
+ Plum3 : Raphael.getRGB("#CD96CD "), // 205 150 205
561
+ Plum4 : Raphael.getRGB("#8B668B "), // 139 102 139
562
+ MediumOrchid1 : Raphael.getRGB("#E066FF "), // 224 102 255
563
+ MediumOrchid2 : Raphael.getRGB("#D15FEE "), // 209 95 238
564
+ MediumOrchid3 : Raphael.getRGB("#B452CD "), // 180 82 205
565
+ MediumOrchid4 : Raphael.getRGB("#7A378B "), // 122 55 139
566
+ DarkOrchid1 : Raphael.getRGB("#BF3EFF "), // 191 62 255
567
+ DarkOrchid2 : Raphael.getRGB("#B23AEE "), // 178 58 238
568
+ DarkOrchid3 : Raphael.getRGB("#9A32CD "), // 154 50 205
569
+ DarkOrchid4 : Raphael.getRGB("#68228B "), // 104 34 139
570
+ Purple1 : Raphael.getRGB("#9B30FF "), // 155 48 255
571
+ Purple2 : Raphael.getRGB("#912CEE "), // 145 44 238
572
+ Purple3 : Raphael.getRGB("#7D26CD "), // 125 38 205
573
+ Purple4 : Raphael.getRGB("#551A8B "), // 85 26 139
574
+ MediumPurple1 : Raphael.getRGB("#AB82FF "), // 171 130 255
575
+ MediumPurple2 : Raphael.getRGB("#9F79EE "), // 159 121 238
576
+ MediumPurple3 : Raphael.getRGB("#8968CD "), // 137 104 205
577
+ MediumPurple4 : Raphael.getRGB("#5D478B "), // 93 71 139
578
+ Thistle1 : Raphael.getRGB("#FFE1FF "), // 255 225 255
579
+ Thistle2 : Raphael.getRGB("#EED2EE "), // 238 210 238
580
+ Thistle3 : Raphael.getRGB("#CDB5CD "), // 205 181 205
581
+ Thistle4 : Raphael.getRGB("#8B7B8B "), // 139 123 139
582
+ grey11 : Raphael.getRGB("#1C1C1C "), // 28 28 28
583
+ grey21 : Raphael.getRGB("#363636 "), // 54 54 54
584
+ grey31 : Raphael.getRGB("#4F4F4F "), // 79 79 79
585
+ grey41 : Raphael.getRGB("#696969 "), // 105 105 105
586
+ grey51 : Raphael.getRGB("#828282 "), // 130 130 130
587
+ grey61 : Raphael.getRGB("#9C9C9C "), // 156 156 156
588
+ grey71 : Raphael.getRGB("#B5B5B5 "), // 181 181 181
589
+ gray81 : Raphael.getRGB("#CFCFCF "), // 207 207 207
590
+ gray91 : Raphael.getRGB("#E8E8E8 "), // 232 232 232
591
+ DarkGrey : Raphael.getRGB("#A9A9A9 "), // 169 169 169
592
+ DarkBlue : Raphael.getRGB("#00008B "), // 0 0 139
593
+ DarkCyan : Raphael.getRGB("#008B8B "), // 0 139 139
594
+ DarkMagenta : Raphael.getRGB("#8B008B "), // 139 0 139
595
+ DarkRed : Raphael.getRGB("#8B0000 "), // 139 0 0
596
+ LightGreen : Raphael.getRGB("#90EE90 "), // 144 238 144
597
+
598
+
599
+
600
+ get: function(R, G, B){
601
+ return Raphael.getRGB("rgb(" + R + ", " + G + ", " + B + ")");
602
+ }
603
+ };