protected Color parseColor(String colorString, Color def) {
   Color ret;
   try {
     ret = ColorFactory.parseColor(colorString, true);
   } catch (NumberFormatException nfe) {
     ret = def;
   }
   return ret;
 }