This can be achieved by using
lambda - command = lambda:colour("Blue")
However, when using this with 'bind', don't forget to make the lambda form accept the 'event'-argument so it can pass it on to your callback:
- widget.bind("<sequence>", lambda ev: callback_function(ev, arg))
More info on lambda can be found
here.