examples
Themes
Dark Mode
Dark mode can be enabled by passing darkMode option to the NepaliDatePicker constructor.
<script>
new NepaliDatePicker('.dark-mode', {
darkMode: true,
})
</script>
Theme Style
Theme style can be changed by passing theme option to the NepaliDatePicker constructor. Available options are bordered, soft and flat.
<script>
new NepaliDatePicker('.theme-option', {
theme: 'bordered', // Available Options: bordered | soft | flat
})
</script>