Metadata-Version: 2.3
Name: django-base16-admin
Version: 0.1.3
Summary: Base16 color themes for Django Admin.
Keywords: django,base16-themes
Author: stabldev
Author-email: stabldev <thestabldev@gmail.com>
License: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Framework :: Django :: 5.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: django>=5.2.7
Requires-Python: >=3.13
Project-URL: bug-tracker, https://github.com/stabldev/django-base16-admin/issues
Project-URL: documentation, https://github.com/stabldev/django-base16-admin#readme
Project-URL: homepage, https://github.com/stabldev/django-base16-admin
Project-URL: repository, https://github.com/stabldev/django-base16-admin
Description-Content-Type: text/markdown

# django-base16-admin

🎨 Base16 color themes for Django Admin.

## Installation

```bash
pip install django-base16-admin
# uv add django-base16-admin
```

## Usage

1. Add `base16_admin` before `django.contrib.admin` in your `INSTALLED_APPS`:

```py
INSTALLED_APPS = [
    "base16_admin",  # must come first
    "django.contrib.admin",
    "django.contrib.auth",
    "django.contrib.contenttypes",
    ...
]
```

2. (Optional) Choose a theme in your Django settings.py:

```py
BASE16_THEME = "circus"  # default = "circus"
```

Available themes are stored in  
[base16_admin/static/base16_admin/themes/](/src/base16_admin/static/base16_admin/themes/).

3. Run `collectstatic` (prod):

```bash
python manage.py collectstatic
```

4. Start your project and enjoy your new admin look 🎉

## Contributing

Contributions are welcome!  
Feel free to open issues or submit PRs for new Base16 themes or improvements.

## License

[MIT](LICENSE) Copyright (c) [stabldev](https://github.com/stabldev)
