Example · Themes
Blueprint Dark
Dark sibling of Blueprint — brighter cobalt on near-black surfaces with hairline borders
Blueprint Dark Theme
The same technical, hairline-bordered aesthetic on near-black surfaces with a brighter cobalt accent — distinct from the purple dark theme:
index.tstypescript
1const picker = new TimepickerUI(input, {2 ui: { theme: 'blueprint-dark' }3});4picker.create();
Blueprint Dark with 12h Format
index.tstypescript
1const picker = new TimepickerUI(input, {2 ui: { theme: 'blueprint-dark' },3 clock: { type: '12h' }4});5picker.create();
Blueprint Dark with 24h Format
index.tstypescript
1const picker = new TimepickerUI(input, {2 ui: { theme: 'blueprint-dark' },3 clock: { type: '24h' }4});5picker.create();