Still not having any luck. Tried setting every possible color in the application style to azure, and then tried a few in the default style from the theme object but I still have a white->azure gradient. Any other pointers? Up to this point I've just been adding a fullscreen box to cover it, but it would be nice to remove that extra component and do it right.
package test;
import org.jseamless.container.Application;
import org.jseamless.style.ColorFactory;
public class TestBackground extends Application {
private static final long serialVersionUID = 1L;
public TestBackground() {
getStyle().setBackgroundColor(ColorFactory.AZURE.toColor());
getStyle().setThemeColor(ColorFactory.AZURE.toColor());
getTheme().getDefaultStyle().setBackgroundColor(ColorFactory.AZURE.toColor());
getTheme().getDefaultStyle().setThemeColor(ColorFactory.AZURE.toColor());
}
}