How to copy colorZ into your base_properties
The excelent Colorz Skin has one big drawback. It replaces plone.css with its own version. But there is a way around that ...
just customize colorz_properties and base_properties, remove any
property of colorz_properties that is not a color and run this
script:
property of colorz_properties that is not a color and run this
script:
colorz_props = container.colorz_properties.propertyItems()
for prop_name in colorz_props:
colorz_value = getattr(container.colorz_properties, prop_name[0])
attr = getattr(context.colorz, colorz_value)
prop = prop_name[0]
print prop, attr
container.base_properties.manage_changeProperties({prop: attr})
return printed
