-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (58 loc) · 3.57 KB
/
index.html
File metadata and controls
58 lines (58 loc) · 3.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tailwind CSS Color Shades Generator - Create Custom Color Palettes</title>
<meta name="title" content="Tailwind CSS Color Shades Generator - Create Custom Color Palettes">
<meta name="description" content="Free online tool to generate beautiful color palettes for Tailwind CSS. Create custom color shades in OKLCH or HEX formats. Compatible with Tailwind v3 & v4. Export, share, and import color configurations easily.">
<meta name="keywords" content="tailwind css, color palette generator, color shades, tailwind colors, oklch, hex colors, color picker, web design tools, css colors, tailwind v4, color harmony">
<meta name="author" content="Javis Pérez">
<meta name="robots" content="index, follow">
<meta name="language" content="English">
<link rel="canonical" href="https://javisperez.github.io/tailwindcolorshades/">
<meta property="og:type" content="website">
<meta property="og:url" content="https://javisperez.github.io/tailwindcolorshades/">
<meta property="og:title" content="Tailwind CSS Color Shades Generator - Create Custom Color Palettes">
<meta property="og:description" content="Free online tool to generate beautiful color palettes for Tailwind CSS. Create custom color shades in OKLCH or HEX formats. Compatible with Tailwind v3 & v4.">
<meta property="og:image" content="https://javisperez.github.io/tailwindcolorshades/logo.png">
<meta property="og:site_name" content="Tailwind CSS Color Shades Generator">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://javisperez.github.io/tailwindcolorshades/">
<meta property="twitter:title" content="Tailwind CSS Color Shades Generator - Create Custom Color Palettes">
<meta property="twitter:description" content="Free online tool to generate beautiful color palettes for Tailwind CSS. Create custom color shades in OKLCH or HEX formats. Compatible with Tailwind v3 & v4.">
<meta property="twitter:image" content="https://javisperez.github.io/tailwindcolorshades/logo.png">
<meta name="theme-color" content="#38bdf8">
<meta name="msapplication-TileColor" content="#38bdf8">
<link href="https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800&display=swap" rel="stylesheet"/>
<link rel="icon" href="favicon.ico">
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16" />
<link rel="apple-touch-icon" href="logo.png">
</head>
<body class="bg-white dark:bg-gray-900 dark:text-gray-300">
<div id="app"></div>
<div id="modals"></div>
<script>
// Unregister old PWA service workers and clear caches for this app only
if ('serviceWorker' in navigator) {
navigator.serviceWorker.getRegistrations().then(function(registrations) {
registrations.forEach(function(registration) {
if (registration.scope.includes('/tailwindcolorshades')) {
registration.unregister();
}
});
});
caches.keys().then(function(names) {
names.forEach(function(name) {
if (name.includes('workbox') || name.includes('tailwindcolorshades')) {
caches.delete(name);
}
});
});
}
</script>
<script type="module" src="/src/main.ts"></script>
</body>
</html>