fix: set dialog text color to use theme foreground

The native `<dialog>` element has browser-default black text that
doesn't inherit from the body, making it unreadable in dark mode.
This commit is contained in:
Florian Schroedl
2026-03-03 11:43:20 +01:00
parent a9f4f4158c
commit c36ee05c68

View File

@@ -7,6 +7,7 @@
margin: auto;
padding: 0;
background: var(--bg-1);
color: var(--fg-0);
border: var(--border-0);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-3);