fix(toolColors) Set limegreen for active tool color

This commit is contained in:
Evren Ozkan 2018-04-06 13:58:39 -04:00 committed by Erik Ziegler
parent 99c65bb017
commit a5f426cf61

View File

@ -174,10 +174,10 @@ export const toolManager = {
toolStyle.setToolWidth(2);
// Set color for inactive tools
toolColors.setToolColor('rgb(255, 255, 0)');
toolColors.setToolColor('rgb(255, 255, 0)'); // yellow
// Set color for active tools
toolColors.setActiveColor('rgb(0, 255, 0)');
toolColors.setActiveColor('rgb(50, 205, 50)'); // limegreen
// Set shadow configuration
const shadowConfig = toolManager.getToolDefaultStates().shadowConfig;