Made tools flourescent green so they are easier to see (LT-191)

This commit is contained in:
Erik Ziegler 2016-02-16 15:03:34 +01:00
parent 8a0b9e6ba5
commit 013c003128
2 changed files with 13 additions and 1 deletions

View File

@ -224,7 +224,7 @@
y: hscaleBounds.bottomRight.y
}
},
color: cornerstoneTools.toolColors.getToolColor(),
color: 'white', // TODO: fix this later
lineWidth: cornerstoneTools.toolStyle.getToolWidth()
};

View File

@ -20,6 +20,18 @@ function configureTools() {
}
};
cornerstoneTools.panMultiTouch.setConfiguration(multiTouchPanConfig);
// Set the text box background color
cornerstoneTools.textStyle.setBackgroundColor('black');
// Set the tool width
cornerstoneTools.toolStyle.setToolWidth(2);
// Set color for inactive tools
cornerstoneTools.toolColors.setToolColor('rgb(111, 245, 66)');
// Set color for active tools
cornerstoneTools.toolColors.setActiveColor('rgb(66, 245, 206)');
}
toolManager = {