private JButton makeButton(String name) {
   JButton b = new JButton(name);
   b.setForeground(actionColor);
   return b;
 }