Example · Themes
Crane Theme
Google Crane theme with rounded corners
Crane Theme
Modern theme inspired by Google Material Design Crane with smooth rounded edges:
index.tstypescript
1const picker = new TimepickerUI(input, {2 ui: { theme: 'crane' }3});4picker.create();
With 12h Format
index.tstypescript
1const picker = new TimepickerUI(input, {2 ui: { theme: 'crane' },3 clock: { type: '12h' }4});5picker.create();
With 24h Format
index.tstypescript
1const picker = new TimepickerUI(input, {2 ui: { theme: 'crane' },3 clock: { type: '24h' }4});5picker.create();