SMK Family style & branding kit: logo, palette, typography, per-app playbook

This commit is contained in:
2026-08-15 21:37:48 +00:00
commit 7a31c7ed8d
20 changed files with 475 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
# Paperless-ngx branding — SMK
## What's supported
- Custom logo: `PAPERLESS_APP_LOGO` env var → path to a logo image served as static.
- Paperless ships its own dark mode (matches SMK dark-first).
## Assets
- Logo: `../../assets/icon.svg` → serve as static file; reference in `PAPERLESS_APP_LOGO`.
## Apply (cosmetic only)
In the paperless compose `.env`:
```
PAPERLESS_APP_LOGO=/usr/src/paperless/static/logo/icon.svg
```
And bind-mount `assets/icon.svg` into the container's static dir.
Then `docker compose up -d paperless-webserver` (env change → recreate container; no DB/auth changes).
## Note
Logo path must be inside the container. If mount friction, host via Gitea raw URL instead:
```
PAPERLESS_APP_LOGO=https://git.smkfam.com/larry/smk-branding/raw/branch/main/assets/icon.svg
```