BackgroundColorAnimation blackBackgroundColorAnimation = new BackgroundColorAnimation( contentPane, Color.BLACK );
blackBackgroundColorAnimation.setStartOffset( 10000 );
blackBackgroundColorAnimation.setDuration( 1000 );
defaultAnimationExecutor.addAnimation( blackBackgroundColorAnimation );
ForegroundColorAnimation foregroundColorAnimation = new ForegroundColorAnimation( lblGeil, Color.WHITE );
foregroundColorAnimation.setStartOffset( 11000 );
foregroundColorAnimation.setDuration( 2000 );
defaultAnimationExecutor.addAnimation( foregroundColorAnimation );
BackgroundColorRangeAnimation prepareColorRangeAnimation = new BackgroundColorRangeAnimation( contentPane, new Color( Color.HSBtoRGB( 0f, 1f, 1f ) ) );
prepareColorRangeAnimation.setStartOffset( 13000 );
prepareColorRangeAnimation.setDuration( 1000 );