A Django app that exports a field with a color picker.
Makes use of http://jscolor.com/.
Add the project somewhere in your python path, e.g. via pip:
pip install -e git+git://github.com/mbi/django-colorfield.git#egg=django-colorfield
Add
colorfieldto yourINSTALLED_APPSRun
manage.py collectstatic(in production) to collect static files from the appAdd a
ColorFieldin your models:from colorfield.fields import ColorField class TestColor(models.Model): name = models.TextField() color = ColorField(default="ffffff")