Toggle between light and dark themes by switching a CSS class.
The uploader respects CSS variable overrides scoped to the dark class.
Drag & drop files here, or paste from clipboard
.cu-dark {
--cu-primary: #6366f1;
--cu-bg: #1f2937;
--cu-text: #f3f4f6;
--cu-border-color: #374151;
background-color: #111827;
color: #f3f4f6;
}
<button onclick="container.classList.toggle('cu-dark')">
Toggle Dark Mode
</button>
<div id="container">
<au:AjaxFileUpload ID="Uploader1" runat="server" />
</div>