Fix pwa_background_color in template

This commit is contained in:
Feodor Fitsner 2024-11-04 12:34:59 -08:00
parent 64622e09fd
commit 9a26e678da
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@
"short_name": "{{ cookiecutter.project_name }}", "short_name": "{{ cookiecutter.project_name }}",
"start_url": ".", "start_url": ".",
"display": "standalone", "display": "standalone",
"background_color": "{{ cookiecutter.pwa_background_color }}", "background_color": "{{ cookiecutter.pwa_background_color if cookiecutter.pwa_background_color else '#0175C2' }}",
"theme_color": "{{ cookiecutter.pwa_theme_color }}", "theme_color": "{{ cookiecutter.pwa_theme_color if cookiecutter.pwa_theme_color else '#0175C2' }}",
"description": "{{ cookiecutter.project_description }}", "description": "{{ cookiecutter.project_description }}",
"orientation": "portrait-primary", "orientation": "portrait-primary",
"prefer_related_applications": false, "prefer_related_applications": false,