> For the complete documentation index, see [llms.txt](https://jared-gibb.gitbook.io/fullcalendar-plugin-suite/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jared-gibb.gitbook.io/fullcalendar-plugin-suite/elements/calendar/input-fields/business-hours.md).

# Business Hours

{% embed url="<https://vimeo.com/571300241>" %}

## Business Hours Input Fields

![](/files/-MdmqcOQVHaU8D4qfnJy)

### Daily Start Time

* This is the start of the window of time
* This will apply for ***all*** [applicable days](/fullcalendar-plugin-suite/elements/calendar/input-fields/business-hours.md#applicable-days)
* This input takes time in a 24:00 hour format. Do not include any spaces or any other formatting. This input&#x20;
* The following are some acceptable examples but be aware that at this time, ***the calendar will only accept 1 value***

```javascript
[00:00, 9:00, 12:30, 18:45]
    //only include one time.
    //do not include seconds or any am/pm or other formatting pieces here
```

### Daily End Time

* This is the end of the window of time
* This will apply for ***all*** [applicable days](/fullcalendar-plugin-suite/elements/calendar/input-fields/business-hours.md#applicable-days)
* This input takes time in a 24:00 hour format. Do not include any spaces or any other formatting. This input&#x20;
* The following are some acceptable examples but be aware that at this time, ***the calendar will only accept 1 value***

```javascript
[00:00, 9:00, 12:30, 18:45] 
    //only include one time.
    //do not include seconds or any am/pm or other formatting pieces here
```

### Applicable Days&#x20;

* For now, when using either of these settings, the times chosen above will apply to all provided days.
* Days are represented as numbers and are 0-indexed meaning Sunday = 0, Monday = 1, Tuesday = 2, and so on.&#x20;
* This field accepts a list or a comma separated string

```javascript
[1,2,3,4,5] //this list would represent Mon - Fri
```

### Inactive Color

* This takes any valid color code including HEX, RGB, RGBA
