Skip to content

Commit

Permalink
update wordsearch drawer to reference its own color constants
Browse files Browse the repository at this point in the history
  • Loading branch information
Hamms committed Feb 23, 2018
1 parent f5183a9 commit 3a66ef7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/src/maze/wordsearchDrawer.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
* skin-specific functionality.
*/
import Drawer, { SQUARE_SIZE, SVG_NS } from './drawer';
import color from "../util/color";

const color = {
black: "#000",
white: "#fff",
};

/**
* @param {MaseMap} map The map from the maze, which shows the current
Expand Down

0 comments on commit 3a66ef7

Please sign in to comment.