From 06ed2a0ddd942aff4f15dba973f5fb295f1614cf Mon Sep 17 00:00:00 2001 From: Lennart Date: Mon, 20 Sep 2021 10:18:22 +0200 Subject: [PATCH] chore(starters): Make `theme_color` optional (#33252) --- starters/blog/gatsby-config.js | 4 +++- starters/default/gatsby-config.js | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/starters/blog/gatsby-config.js b/starters/blog/gatsby-config.js index a282da5d0af3d..e72eeeb7f5b9b 100644 --- a/starters/blog/gatsby-config.js +++ b/starters/blog/gatsby-config.js @@ -116,7 +116,9 @@ module.exports = { short_name: `GatsbyJS`, start_url: `/`, background_color: `#ffffff`, - theme_color: `#663399`, + // This will impact how browsers show your PWA/website + // https://css-tricks.com/meta-theme-color-and-trickery/ + // theme_color: `#663399`, display: `minimal-ui`, icon: `src/images/gatsby-icon.png`, // This path is relative to the root of the site. }, diff --git a/starters/default/gatsby-config.js b/starters/default/gatsby-config.js index 7721fc5ba0707..9678eccb1dc19 100644 --- a/starters/default/gatsby-config.js +++ b/starters/default/gatsby-config.js @@ -24,7 +24,9 @@ module.exports = { short_name: `starter`, start_url: `/`, background_color: `#663399`, - theme_color: `#663399`, + // This will impact how browsers show your PWA/website + // https://css-tricks.com/meta-theme-color-and-trickery/ + // theme_color: `#663399`, display: `minimal-ui`, icon: `src/images/gatsby-icon.png`, // This path is relative to the root of the site. },