@jonit-dev/night-watch-cli 1.4.2 → 1.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>Night Watch Web UI</title>
|
|
7
|
+
<script src="https://cdn.tailwindcss.com"></script>
|
|
8
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
9
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
10
|
+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
|
|
11
|
+
<style>
|
|
12
|
+
:root {
|
|
13
|
+
--font-sans: 'Inter', system-ui, -apple-system, sans-serif;
|
|
14
|
+
--font-mono: 'JetBrains Mono', monospace;
|
|
15
|
+
}
|
|
16
|
+
body {
|
|
17
|
+
font-family: var(--font-sans);
|
|
18
|
+
background-color: #030712; /* gray-950+ */
|
|
19
|
+
}
|
|
20
|
+
.font-mono {
|
|
21
|
+
font-family: var(--font-mono);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/* Custom scrollbar */
|
|
25
|
+
.scrollbar-hide::-webkit-scrollbar {
|
|
26
|
+
display: none;
|
|
27
|
+
}
|
|
28
|
+
.scrollbar-hide {
|
|
29
|
+
-ms-overflow-style: none;
|
|
30
|
+
scrollbar-width: none;
|
|
31
|
+
}
|
|
32
|
+
.terminal-scroll::-webkit-scrollbar {
|
|
33
|
+
width: 6px;
|
|
34
|
+
}
|
|
35
|
+
.terminal-scroll::-webkit-scrollbar-track {
|
|
36
|
+
background: transparent;
|
|
37
|
+
}
|
|
38
|
+
.terminal-scroll::-webkit-scrollbar-thumb {
|
|
39
|
+
background: #374151;
|
|
40
|
+
border-radius: 99px;
|
|
41
|
+
}
|
|
42
|
+
.terminal-scroll::-webkit-scrollbar-thumb:hover {
|
|
43
|
+
background: #4b5563;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/* Global Scrollbar */
|
|
47
|
+
::-webkit-scrollbar {
|
|
48
|
+
width: 8px;
|
|
49
|
+
height: 8px;
|
|
50
|
+
}
|
|
51
|
+
::-webkit-scrollbar-track {
|
|
52
|
+
background: transparent;
|
|
53
|
+
}
|
|
54
|
+
::-webkit-scrollbar-thumb {
|
|
55
|
+
background: #1f2937;
|
|
56
|
+
border-radius: 4px;
|
|
57
|
+
border: 2px solid #030712; /* Matches body bg for padding effect */
|
|
58
|
+
}
|
|
59
|
+
::-webkit-scrollbar-thumb:hover {
|
|
60
|
+
background: #374151;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/* Subtle gradient animation for active elements */
|
|
64
|
+
@keyframes gradient-x {
|
|
65
|
+
0%, 100% {
|
|
66
|
+
background-position: 0% 50%;
|
|
67
|
+
}
|
|
68
|
+
50% {
|
|
69
|
+
background-position: 100% 50%;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
.animate-gradient-x {
|
|
73
|
+
background-size: 200% 200%;
|
|
74
|
+
animation: gradient-x 3s ease infinite;
|
|
75
|
+
}
|
|
76
|
+
</style>
|
|
77
|
+
|
|
78
|
+
<script type="importmap">
|
|
79
|
+
{
|
|
80
|
+
"imports": {
|
|
81
|
+
"react/": "https://esm.sh/react@^19.2.4/",
|
|
82
|
+
"react": "https://esm.sh/react@^19.2.4",
|
|
83
|
+
"react-dom": "https://esm.sh/react-dom@^19.2.4",
|
|
84
|
+
"react-dom/": "https://esm.sh/react-dom@^19.2.4/",
|
|
85
|
+
"lucide-react": "https://esm.sh/lucide-react@^0.564.0",
|
|
86
|
+
"react-router-dom": "https://esm.sh/react-router-dom@^7.13.0",
|
|
87
|
+
"zustand": "https://esm.sh/zustand@5.0.3"
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
</script>
|
|
91
|
+
<script type="module" crossorigin src="/assets/index-K21kuh-W.js"></script>
|
|
92
|
+
</head>
|
|
93
|
+
<body class="bg-[#030712] text-slate-300 font-sans antialiased overflow-hidden selection:bg-indigo-500/30 selection:text-indigo-200">
|
|
94
|
+
<div id="root"></div>
|
|
95
|
+
</body>
|
|
96
|
+
</html>
|