private void applyBackground(@NotNull Color color) {
   setBackground(color);
   for (JComponent component : myRows) {
     component.setBackground(color);
   }
 }