agentgui 1.0.627 → 1.0.628
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.
- package/docs/index.html +4 -3
- package/package.json +1 -1
package/docs/index.html
CHANGED
|
@@ -14,14 +14,14 @@
|
|
|
14
14
|
pre, code { font-family: 'Courier New', monospace; }
|
|
15
15
|
.arch-diagram { background: #0f172a; border: 1px solid #1e293b; border-radius: 12px; padding: 1.5rem; overflow-x: auto; color: #94a3b8; font-size: 0.8rem; line-height: 1.6; }
|
|
16
16
|
nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
#site-nav { background: rgba(20, 10, 45, 0.88); border-color: rgba(118, 75, 162, 0.4); }
|
|
18
|
+
#site-nav.light { background: rgba(232, 225, 255, 0.92); border-color: rgba(102, 126, 234, 0.3); }
|
|
19
19
|
</style>
|
|
20
20
|
</head>
|
|
21
21
|
<body class="bg-base-1 text-content1">
|
|
22
22
|
|
|
23
23
|
<!-- Nav -->
|
|
24
|
-
<nav class="border-b px-6 py-3 flex items-center justify-between">
|
|
24
|
+
<nav id="site-nav" class="border-b px-6 py-3 flex items-center justify-between">
|
|
25
25
|
<span class="font-bold text-lg">AgentGUI</span>
|
|
26
26
|
<div class="flex items-center gap-3">
|
|
27
27
|
<a href="https://github.com/AnEntrypoint/agentgui" class="btn btn-sm btn-ghost">GitHub</a>
|
|
@@ -39,6 +39,7 @@
|
|
|
39
39
|
html.setAttribute('data-theme', isDark ? 'light' : 'dark');
|
|
40
40
|
document.getElementById('icon-sun').style.display = isDark ? 'block' : 'none';
|
|
41
41
|
document.getElementById('icon-moon').style.display = isDark ? 'none' : 'block';
|
|
42
|
+
document.getElementById('site-nav').classList.toggle('light', isDark);
|
|
42
43
|
}
|
|
43
44
|
</script>
|
|
44
45
|
|