colorContent.add(Box.createHorizontalStrut(8));
colorContent.add(new ColorSwatch(Color.gray));
colorContent.add(Box.createHorizontalStrut(8));
colorContent.add(new ColorText(Color.gray));
colorContent.add(Box.createHorizontalStrut(8));
colorContent.add(new DropperButton());
colorContent.setBorder(BorderFactory.createEmptyBorder(3, 3, 3, 3));
JFrame frame = new JFrame("Test");
frame.setContentPane(colorContent);