Skip to content

Commit

Permalink
fix: update theme_color for dark-mode
Browse files Browse the repository at this point in the history
  • Loading branch information
ndom91 committed Jun 23, 2024
1 parent 72b2684 commit 16ac4ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<link rel="manifest" href="/manifest.webmanifest" />

<meta name="theme-color" media="(prefers-color-scheme: light)" content="#000000" />
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#09090b" />
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#171717" />

%sveltekit.head%
</head>
Expand Down
4 changes: 2 additions & 2 deletions apps/web/static/manifest.webmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"short_name": "BriefButler",
"description": "Bookmarks, RSS Feeds, and more!",
"orientation": "portrait",
"theme_color": "#09090b",
"background_color": "#09090b",
"theme_color": "#171717",
"background_color": "#171717",
"display": "standalone",
"display_override": [
"window-controls-overlay"
Expand Down

0 comments on commit 16ac4ef

Please sign in to comment.