Skip to content

Commit 0c56f33

Browse files
authored
fix: update incorrect meta properties (#112)
1 parent a05800f commit 0c56f33

2 files changed

Lines changed: 12 additions & 6 deletions

File tree

index.html

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,17 @@
44
<meta charset="utf-8" />
55
<link rel="icon" href="public/favicon.ico" />
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
7-
<meta name="theme-color" content="#000000" />
87
<meta
9-
name="description"
10-
content="Web site created using create-react-app"
8+
name="theme-color"
9+
content="#4B32C3"
10+
media="(prefers-color-scheme: light)"
1111
/>
12+
<meta
13+
name="theme-color"
14+
content="#B7B7FF"
15+
media="(prefers-color-scheme: dark)"
16+
/>
17+
<meta name="description" content="ESLint Code Explorer" />
1218
<link rel="apple-touch-icon" href="public/logo192.png" />
1319

1420
<link rel="manifest" href="public/manifest.json" />

public/manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"short_name": "React App",
3-
"name": "Create React App Sample",
2+
"short_name": "Code Explorer",
3+
"name": "ESLint Code Explorer",
44
"icons": [
55
{
66
"src": "favicon.ico",
@@ -20,6 +20,6 @@
2020
],
2121
"start_url": ".",
2222
"display": "standalone",
23-
"theme_color": "#000000",
23+
"theme_color": "#8080F2",
2424
"background_color": "#ffffff"
2525
}

0 commit comments

Comments
 (0)