dsh dark: fix bubbles/buttons/inputs (app.css vars + dark scrollbar)

This commit is contained in:
2026-09-03 13:26:57 +10:00
parent 485319812c
commit 04a3aeb712
2 changed files with 19 additions and 1 deletions

View File

@@ -38,4 +38,13 @@ body { display: flex; flex-direction: column; background: var(--canvas); color:
.composer button {
padding: 12px 22px; border: none; border-radius: 999px; background: var(--accent);
color: #fff; cursor: pointer; font-size: 15px;
}
}
[data-theme="dark"] {
--canvas: #141518;
--panel: #1c1e22;
--ink: #f5f6f7;
--accent: #3d8be0;
--hairline: #33363d;
}
[data-theme="dark"] body, [data-theme="dark"] .log { scrollbar-color: #4a4d55 #141518; }
[data-theme="dark"] .msg.user .bubble { color: #ffffff; }