FlxTween can be used to change values over time following a number of available curve functions.

Using color allows you to change the color of a FlxSprite over time.

// create a color tween
FlxTween.color(myObject, duration, fromColor, toColor, {type: tweenType, easing: FlxEase: easeFunction});

Demonstration

package;

import flixel.FlxSprite;
import flixel.FlxState;
import flixel.tweens.FlxEase;
import flixel.tweens.FlxTween;
import flixel.util.FlxColor;

class PlayState extends FlxState
{
	var sprite:FlxSprite;
	
	override function create()
	{
		super.create();
		
		sprite = new FlxSprite();
		sprite.makeGraphic(128, 128, FlxColor.WHITE);
		sprite.screenCenter();
		add(sprite);
		
		FlxTween.color(sprite, 1, FlxColor.RED, FlxColor.CYAN, {type: FlxTweenType.PINGPONG, ease: FlxEase.sineInOut});
	}
}