Hi,
I’m trying to set the background and foreground colors on a FlatTheme Title bar. I think i need to do something like the following.
FlatTheme theme = new FlatTheme();
FlatColorScheme scheme = new FlatColorScheme();
scheme.setColor(“Some String Value”, Color.RED);
scheme.setColor(“Some String Value”, Color.RED);
theme.setColorScheme(scheme);
controller.setTheme(new NoStackTheme(theme));
i don’t know where to find the list of keys to use in the setColor function.Am I on the right track here.
Thanks