charettes / django-colorful

Extension to the Django web framework that provides database and form color fields
https://pypi.python.org/pypi/django-colorful
MIT License
169 stars 58 forks source link

optional value support #55

Open mick88 opened 2 years ago

mick88 commented 2 years ago

The RGBColorField can be an optional field, but the colur picker widget does not seem to support it and defaults to black color.

Example model field:

nav_bar_color = RGBColorField(null=True, blank=True)