Example · Themes
Blueprint
Light precision-instrument look with a vivid cobalt accent and hairline borders
Blueprint Theme
A clean, technical aesthetic on white surfaces — vivid cobalt accent and crisp hairline borders that match the docs' own look:
index.tstypescript
1const picker = new TimepickerUI(input, {2 ui: { theme: 'blueprint' }3});4picker.create();
Blueprint with 12h Format
index.tstypescript
1const picker = new TimepickerUI(input, {2 ui: { theme: 'blueprint' },3 clock: { type: '12h' }4});5picker.create();
Blueprint with 24h Format
index.tstypescript
1const picker = new TimepickerUI(input, {2 ui: { theme: 'blueprint' },3 clock: { type: '24h' }4});5picker.create();