Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Enable and style the built-in color modes.
Dark Mode is easiest to learn by reading the example, changing it, and observing the result.
<div data-bs-theme="dark" class="p-4 bg-body text-body rounded">
<p class="text-primary">Primary text</p>
<p class="text-success">Success text</p>
<div class="bg-warning-subtle text-warning-emphasis p-2 rounded">Subtle warning box</div>
<button class="btn btn-primary">Themed button</button>
</div>Practice the Dark Mode example in a small scratch file, then explain what changed and why.