Skip to content

Commit

Permalink
feat(manifest): add theme_color and background_color support
Browse files Browse the repository at this point in the history
  • Loading branch information
sparanoid committed Jan 16, 2017
1 parent 5ba1094 commit c0c23ce
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions _app/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@
{
"name": {{ site.name | jsonify }},
"short_name": {{ site.name_short | jsonify }},
"start_url": {{ site.base | jsonify }},
"display": "standalone",
"theme_color": {{ site.colors.theme | jsonify }},
"background_color": {{ site.colors.background | jsonify }},
"icons": [
{
"src": {{ "/favicon.png" | prepend: site.base | jsonify }},
"sizes": "192x192",
"type": "image/png"
}
],
"start_url": {{ site.base | jsonify }},
"display": "standalone"
]
}

0 comments on commit c0c23ce

Please sign in to comment.