Skip to content

Commit

Permalink
Fix theme-color values.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecao committed Nov 20, 2021
1 parent 65adfee commit d780573
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/_app.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ export default function App({ Component, pageProps }) {
<link rel="manifest" href={`${basePath}/site.webmanifest`} />
<link rel="mask-icon" href={`${basePath}/safari-pinned-tab.svg`} color="#5bbad5" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="##fafafa" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="##2f2f2f" media="(prefers-color-scheme: dark)" />
<meta name="theme-color" content="#fafafa" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#2f2f2f" media="(prefers-color-scheme: dark)" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</Head>
<Intl>
Expand Down

0 comments on commit d780573

Please sign in to comment.