Skip to content

Commit

Permalink
feat: fix dark mode theme color
Browse files Browse the repository at this point in the history
  • Loading branch information
Calvin-LL committed Nov 3, 2023
1 parent c9e5aeb commit 257e130
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ const { title } = Astro.props;
<meta name="apple-mobile-web-app-title" content="SecretDrop" />
<meta name="application-name" content="SecretDrop" />
<meta name="msapplication-TileColor" content="#fdfffd" />
<meta name="theme-color" content="#fdfffd" />
<meta
name="theme-color"
content="#303f30"
media="(prefers-color-scheme: dark)"
/>
<meta name="theme-color" content="#fdfffd" />

<link rel="manifest" href="/site.webmanifest" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
Expand Down

0 comments on commit 257e130

Please sign in to comment.