It looks like support for hsl color values within the manifest is limited so we have to convert the colors to hex
16 lines
429 B
JSON
16 lines
429 B
JSON
{
|
|
"name": "{{ .App.Config.Branding.AppName }}",
|
|
"display": "standalone",
|
|
"background_color": "{{ .App.Config.Branding.AppBackgroundColor }}",
|
|
"theme_color": "{{ .App.Config.Branding.AppBackgroundColor }}",
|
|
"scope": "/",
|
|
"start_url": "/",
|
|
"icons": [
|
|
{
|
|
"src": "{{ .App.Config.Branding.AppIconURL }}",
|
|
"type": "image/png",
|
|
"sizes": "512x512"
|
|
}
|
|
]
|
|
}
|