-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (82 loc) · 3.36 KB
/
Copy pathindex.html
File metadata and controls
90 lines (82 loc) · 3.36 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
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="manifest" href="/skalyk/manifest.json">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Skalyk">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
<title>SKALYK</title>
<meta name="theme-color" content="#191414">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<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=Unbounded:wght@200..900&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" href="/skalyk//logo_transparent.png" sizes="48x48" />
<link rel="icon" type="image/png" href="/skalyk/logo_transparent.png" sizes="96x96" />
<link rel="apple-touch-icon" sizes="180x180" href="/skalyk/logo.png" />
<link rel="shortcut icon" href="/skalyk/logo_transparent.png" />
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Unbounded', 'sans-serif'],
},
// Добавление вашей палитры в Tailwind
colors: {
'klein-blue': '#4100F5',
'citric': '#CDF564',
'aquamarine': '#9BF0E1',
'fushia': '#F037A5',
'tangerine': '#FF4632',
'skalyk-black': '#191414',
// Переопределение стандартных цветов для быстрой смены темы,
// если вы хотите, чтобы старые классы (lime, cyan, orange)
// приняли точные значения из вашей палитры:
lime: {
400: '#CDF564', // Citric вместо стандартного Lime
},
cyan: {
400: '#9BF0E1', // Aquamarine вместо стандартного Cyan
},
orange: {
500: '#FF4632', // Tangerine вместо стандартного Orange
},
zinc: {
950: '#191414', // Ваш фирменный Black вместо стандартного Zinc
900: '#221E1E', // Чуть светлее для карточек (авто-генерация)
}
},
},
},
}
</script>
<script type="importmap">
{
"imports": {
"lucide-react": "https://esm.sh/lucide-react@^0.563.0",
"react/": "https://esm.sh/react@^19.2.3/",
"react": "https://esm.sh/react@^19.2.3",
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
"react-dom": "https://esm.sh/react-dom@^19.2.3"
}
}
</script>
<style>
/* Глобальный фон сайта в цвет Black из палитры */
body, html {
background-color: #191414;
color: white;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="./src/main.tsx"></script>
</body>
</html>