Skip to content

Commit

Permalink
feat(accent color): use color of navBar (#6391)
Browse files Browse the repository at this point in the history
* feat(accent color): use color of header

* fix: update type

* fix: make it work correctly
  • Loading branch information
AugustinMauroy authored Mar 2, 2024
1 parent c4ec78a commit 456614e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 10 additions & 1 deletion next.dynamic.constants.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,16 @@ export const PAGE_METADATA = {
* @return {import('next').Viewport}
*/
export const PAGE_VIEWPORT = {
themeColor: siteConfig.accentColor,
themeColor: [
{
color: siteConfig.lightAccentColor,
media: '(prefers-color-scheme: light)',
},
{
color: siteConfig.darkAccentColor,
media: '(prefers-color-scheme: dark)',
},
],
width: 'device-width',
initialScale: 1,
};
3 changes: 2 additions & 1 deletion site.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"title": "Node.js",
"description": "Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.",
"favicon": "/static/images/favicons/favicon.png",
"accentColor": "#333",
"lightAccentColor": "#FFFFFF",
"darkAccentColor": "#0D121C",
"twitter": {
"username": "@nodejs",
"card": "summary",
Expand Down
3 changes: 2 additions & 1 deletion types/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ export interface SiteConfig {
description: string;
featuredImage: string;
favicon: string;
accentColor: string;
lightAccentColor: string;
darkAccentColor: string;
og: OGConfig;
twitter: TwitterConfig;
rssFeeds: Array<RSSFeed>;
Expand Down

0 comments on commit 456614e

Please sign in to comment.