Skip to content

Commit

Permalink
chore: fixed theme colors (calcom#13463)
Browse files Browse the repository at this point in the history
the palette has changed so the theme has to be adjusted for pwa mode
  • Loading branch information
PeerRich authored Jan 30, 2024
1 parent 910f5f9 commit d6927c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ class MyDocument extends Document<Props> {
<link rel="manifest" href="/site.webmanifest" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#000000" />
<meta name="msapplication-TileColor" content="#ff0000" />
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#f9fafb" />
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#1C1C1C" />
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#F9FAFC" />
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#1F1F1F" />
{!IS_PRODUCTION && process.env.VERCEL_ENV === "preview" && (
// eslint-disable-next-line @next/next/no-sync-scripts
<script
Expand Down

0 comments on commit d6927c5

Please sign in to comment.