Dark Theme

Dark mode theme for reduced eye strain

Dark Theme

Perfect for night-time use and dark interfaces:

Dark Theme

Optimized for low-light environments

import { Timepicker } from "timepicker-ui-react";
function App() {
return (
<Timepicker
options={{
ui: { theme: "dark" }
}}
/>
);
}

Dark with 24h Format

<Timepicker
options={{
ui: { theme: "dark" },
clock: { type: "24h" }
}}
/>