$(document).on('viewerLoaded', function() {
var oldLeftDown = Tools.TextHighlightCreateTool.prototype.mouseLeftDown;
Tools.TextHighlightCreateTool.prototype.mouseLeftDown = function() {
oldLeftDown.apply(this, arguments);
this.annotation.StrokeColor = new Annotations.Color(0, 255, 255);
};
});