-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (74 loc) · 4.17 KB
/
Copy pathindex.html
File metadata and controls
79 lines (74 loc) · 4.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./vite.svg" />
<link rel="apple-touch-icon" href="./vite.svg" />
<link rel="manifest" href="./site.webmanifest" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#1e1f22" />
<meta name="description" content="ThemeDatabase is a global VS Code theme explorer: pick any color from code, filter 22K+ themes, and export selections as a VSIX." />
<meta name="keywords" content="VS Code theme database, vscode themes, theme explorer, color filter, token filter, VSIX builder, darcula, dracula, syntax highlighting themes" />
<meta name="author" content="ns0bj" />
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
<meta name="googlebot" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
<link rel="canonical" href="https://nsozturk.github.io/ThemeDatabase/" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="ThemeDatabase" />
<meta property="og:title" content="ThemeDatabase · Global Theme Explorer" />
<meta property="og:description" content="Pick any color from code and filter across the entire theme database. Export any theme as a VSIX." />
<meta property="og:url" content="https://nsozturk.github.io/ThemeDatabase/" />
<meta property="og:image" content="https://nsozturk.github.io/ThemeDatabase/og.png" />
<meta property="og:locale" content="en_US" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="ThemeDatabase · Global Theme Explorer" />
<meta name="twitter:description" content="Pick colors from code, filter 22K+ VS Code themes, and generate a VSIX extension package in the browser." />
<meta name="twitter:image" content="https://nsozturk.github.io/ThemeDatabase/og.png" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebSite",
"name": "ThemeDatabase",
"url": "https://nsozturk.github.io/ThemeDatabase/",
"description": "Global VS Code theme explorer with color/token filtering and browser-side VSIX export."
},
{
"@type": "SoftwareApplication",
"name": "ThemeDatabase",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Web",
"url": "https://nsozturk.github.io/ThemeDatabase/",
"description": "Search VS Code themes by syntax color intent, preview details, and export VSIX packages in the browser."
}
]
}
</script>
<script>
(function setDynamicCanonical() {
const cleanUrl = window.location.href.split('#')[0];
const canonical = document.querySelector('link[rel="canonical"]');
const ogUrl = document.querySelector('meta[property="og:url"]');
const ogImage = document.querySelector('meta[property="og:image"]');
const twImage = document.querySelector('meta[name="twitter:image"]');
if (canonical) canonical.setAttribute('href', cleanUrl);
if (ogUrl) ogUrl.setAttribute('content', cleanUrl);
// Best-effort for deployments where the base URL differs.
// Note: some crawlers don't execute JS; keep static values above sane.
const base = cleanUrl.endsWith('/') ? cleanUrl : `${cleanUrl}/`;
const img = `${base}og.png`;
if (ogImage) ogImage.setAttribute('content', img);
if (twImage) twImage.setAttribute('content', img);
})();
</script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet" />
<title>ThemeDatabase · Global Theme Explorer</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>