Skip to content

Commit

Permalink
Add selection color to
Browse files Browse the repository at this point in the history
  • Loading branch information
simontorres authored and bmatthieu3 committed Jun 10, 2024
1 parent c881d1c commit 51a1c51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/ProgressiveCat.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export let ProgressiveCat = (function() {
this.shape = options.shape || "square";
this.sourceSize = options.sourceSize || 6;
this.selectSize = this.sourceSize + 2;
this.selectionColor = '#00ff00'; // TODO: to be merged with Catalog
this.selectionColor = options.selectionColor || '#00ff00'; // TODO: to be merged with Catalog
this.hoverColor = options.hoverColor || this.color;


Expand Down

0 comments on commit 51a1c51

Please sign in to comment.