Skip to content

Commit a6766ef

Browse files
authored
Fix theme color not showing up properly in OpenGraph/Discord embeds (modrinth#1384)
1 parent 606b5ac commit a6766ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

layouts/default.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,9 +408,9 @@ useSeoMeta({
408408
description,
409409
publisher: 'Rinth, Inc.',
410410
themeColor: [
411-
{ color: '#1bd96a', media: '(prefers-color-scheme:no-preference)' },
412-
{ color: '#1bd96a', media: '(prefers-color-scheme:dark)' },
413411
{ color: '#00af5c', media: '(prefers-color-scheme:light)' },
412+
{ color: '#1bd96a', media: '(prefers-color-scheme:dark)' },
413+
{ color: '#1bd96a' },
414414
],
415415
colorScheme: 'dark light',
416416

0 commit comments

Comments
 (0)