背景色が黒のJFrameがあります。
setBackground(Color.BLACK);
フィルタとしてRigidAreaを使用しました。
Component rigidArea = Box.createRigidArea(new Dimension(0, 20));
rigidArea.setBackground(Color.BLACK);
getContentPane().add(rigidArea);
ただし、rigidAreaの色は黒ではないため、これは機能しません。ここで何が問題になっていますか?