LWUIT не поддерживает разные цвета для метки (следовательно, тикера), поскольку для этого потребуется немало обработки.
Однако реализовать тикер с нуля в LWUIT довольно просто.Просто получите метку и переопределите краску так:
public void paint(Graphics g) {
UIManager.getInstance().setFG(g, this);
Style style = l.getStyle();
Font f = style.getFont();
boolean isTickerRunning = l.isTickerRunning();
int txtW = f.stringWidth(text);
// update this to draw two strings one with the color that's already set and the
// other with the color you want
g.drawString(getText(), getShiftText() + getX(), getY(),style.getTextDecoration());
}