We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a93f34b + 708e4d9 commit d05992bCopy full SHA for d05992b
pages/_document.js
@@ -20,7 +20,8 @@ class MyDocument extends Document {
20
<link rel="manifest" href="/static/favicons/site.webmanifest" />
21
<link rel="mask-icon" href="/static/favicons/safari-pinned-tab.svg" color="#5bbad5" />
22
<meta name="msapplication-TileColor" content="#000000" />
23
- <meta name="theme-color" content="#000000" />
+ <meta name="theme-color" media="(prefers-color-scheme: light)" content="#fff" />
24
+ <meta name="theme-color" media="(prefers-color-scheme: dark)" content="#000" />
25
<link rel="alternate" type="application/rss+xml" href="/feed.xml" />
26
</Head>
27
<body className="bg-white text-black antialiased dark:bg-gray-900 dark:text-white">
0 commit comments