# @fullcalendar/bootstrap5

> A Bootstrap 5 theme for FullCalendar

Latest version **7.1.0** (published 2026-09-05) · MIT license · 0 weekly downloads

## Install

```sh
npm install @fullcalendar/bootstrap5
pnpm add @fullcalendar/bootstrap5
yarn add @fullcalendar/bootstrap5
bun add @fullcalendar/bootstrap5
```

## Health

**Score 70/100 (B)** — status: active.

Positive: has types; esm support; no vulnerabilities; recently updated; high maintenance score; popular repo.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 7.1.0 |
| Published | 2026-09-05 |
| First published | 2022-02-09 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 60.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 20628 |
| Author | Adam Shaw |
| Maintainers | arshaw |
| Keywords | calendar, event, full-sized, fullcalendar, bootstrap, bootstrap5 |

## Links

- npm: https://www.npmjs.com/package/@fullcalendar/bootstrap5
- Repository: https://github.com/fullcalendar/fullcalendar
- Homepage: https://fullcalendar.io/docs/bootstrap5
- Issues: https://fullcalendar.io/reporting-bugs
- npm.io page: https://npm.io/package/@fullcalendar/bootstrap5

## Alternatives

- [async-exit-hook](https://npm.io/package/async-exit-hook.md) — 3.7M weekly downloads
- [evnty](https://npm.io/package/evnty.md) — 7.2K weekly downloads
- [eleventy-plugin-asciidoc](https://npm.io/package/eleventy-plugin-asciidoc.md) — 3.5K weekly downloads
- [@jswork/next-get2get](https://npm.io/package/@jswork/next-get2get.md) — 945 weekly downloads
- [@dashersw/axon](https://npm.io/package/@dashersw/axon.md) — 934 weekly downloads

## Recent versions

- 7.1.0 (latest) — 2026-09-05
- 7.0.0-rc.0 (rc) — 2025-02-21
- 7.0.0-beta.4 (beta) — 2025-01-09
- 5.11.5 (legacy) — 2023-05-08
- 7.0.2 — 2026-07-24
- 6.1.21 — 2026-06-18
- 6.1.20 — 2025-12-23
- 6.1.19 — 2025-08-10
- 6.1.18 — 2025-06-30
- 6.1.17 — 2025-04-02
- 7.0.0-beta.3 — 2024-12-19
- 7.0.0-beta.1 — 2024-10-10
- 7.0.0-beta.0 — 2024-10-01
- 6.1.15 — 2024-07-12
- 6.1.14 — 2024-06-05
- … 26 more at https://npm.io/package/@fullcalendar/bootstrap5/versions

## README

# FullCalendar Bootstrap 5 Plugin

A [Bootstrap 5](https://getbootstrap.com/) theme for FullCalendar

## Installation

Requires **Bootstrap 5.3 or later**, whose color-modes system introduced the semantic color variables (such as `--bs-secondary-bg`, `--bs-tertiary-bg`, and `--bs-border-color`) that this theme relies on for its light/dark styling.

Also requires **[Bootstrap Icons](https://icons.getbootstrap.com/)** for its toolbar and control icons. The theme uses the icon-font (glyph) technique — referencing icons via `bi bi-*` classes — rather than inline SVGs, so the Bootstrap Icons font stylesheet must be loaded.

Install the FullCalendar vanilla-JS package, the Bootstrap 5 plugin, and Bootstrap 5 with its icon font:

```sh
npm install \
  @fullcalendar/bootstrap5 \
  fullcalendar \
  temporal-polyfill \
  bootstrap \
  bootstrap-icons
```

## Usage

Instantiate a Calendar with the necessary plugin:

```js
import { Calendar } from 'fullcalendar'
import dayGridPlugin from 'fullcalendar/daygrid'
import bootstrapPlugin from '@fullcalendar/bootstrap5'

import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap-icons/font/bootstrap-icons.css'
import 'fullcalendar/skeleton.css'
import '@fullcalendar/bootstrap5/theme.css'

const calendarEl = document.getElementById('calendar')
const calendar = new Calendar(calendarEl, {
  plugins: [
    bootstrapPlugin,
    dayGridPlugin
  ],
  initialView: 'dayGridMonth'
})

calendar.render()
```

---
_Source: https://npm.io/package/@fullcalendar/bootstrap5 · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
