clDefault is default color of wincontrol provided by widgetset theme.
Look at qt implementation (TQtWidget.Palette).
TQtWidget.Palette is initialized before LCL changed any color to handle and it contains default QPalette for
that widget under it's current QStyle.
We decided to introduce clDefault to get all mighty color themes work, before that eg. TCustomPanel default color was clBtnFace, but when you look that from Qt side , that's wrong since clBackground is correct color for TCustomPanel, same for TCustomForm, it was clBtnFace, but clForm is color which should be there. To avoid problems with ParentColor property (if we change wincontrol default color as ws proposed), clDefault is here - default color for all wincontrols is clDefault and that's it.