This is just a fresh playground, stay tuned or feel free to contribute.
pip install django-dark
-
Add "dark" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'dark', ]
-
Modify Django's base_site.html
{% block extrahead %} . . <link href="/static/admin/css/dark.css" type="text/css" media="(prefers-color-scheme: dark)" rel="stylesheet"> {% endblock %}
Template can be found here:
- lib/python3.X/site-packages/django/contrib/admin/templates/admin/base_site.html
- https://github.com/django/django/blob/master/django/contrib/admin/templates/admin/base_site.html
-
Helper Classes
If you are using tintable images (one colored icons), you can add the class "img-invertable", which simply represents:
.img-invertable { filter: invert(0.7) }
# alias sv="source .virtualenv/bin/activate"
# alias vv="mkdir .virtualenv && python3 -m venv .virtualenv && sv"
vv
sv
pip install -r requirements/common.txt
# Compile Examples
lesscpy -x dark/less/dark.less dark/static/admin/css/dark.css
watchmedo shell-command --wait --patterns="*.less" --recursive --command "lesscpy -V -x dark/less/dark.less dark/static/admin/css/dark.css"
watchmedo shell-command --wait --patterns="*.less" --recursive --command "lesscpy -V -x dark/less/dark.less dark/static/admin/css/dark.css && python manage.py collectstatic --noinput"
# Distribution
python setup.py sdist
twine upload --repository-url https://upload.pypi.org/legacy/ dist/*