public static JLabel createLabel(String string) {
   JLabel label = new JLabel(string);
   CSS.label(label);
   return label;
 }