Customizing the Bootstrap Blog Theme
Introduction The Bootstrap Blog theme is highly customizable. This guide will show you how to modify various aspects of the theme to match your personal style and requirements.
Color Scheme Using Bootstrap Variables The theme uses Bootstrap 5.3, which means you can customize colors using Bootstrap’s CSS variables:
:root { --bs-primary: #0066cc; --bs-secondary: #6c757d; --bs-success: #28a745; --bs-info: #17a2b8; --bs-warning: #ffc107; --bs-danger: #dc3545; } Dark Mode Colors Customize dark mode colors in assets/scss/_dark-mode.
Read more