So for some reason I can't seem to set the background color of a JTabbedPane. This code:
metaTabPane = new JTabbedPane();
metaTabPane.setOpaque(true);
metaTabPane.setBackground(Color.green);
does nothing. The JTabbedPane stays the same grayish-blue default color. What am I doing wrong?