Lemur component help

Which is fine. I’ll check how to make the background coherent with the foreground.

This solved the issue

def highlightCircleOff = new Command<Button>() {
    public void execute ( Button source ) {
        if (source.isEnabled()){
            if (!source.isFocused()){
                source.background = defCircleSmallBlack.clone();
            }
        }
    }
}