If you want to enable dark mode according to the Bootstrap documentation instructions, follow these steps:
<html lang="en" data-bs-theme="dark">
<head>
<link href="https://cdn.jsdelivr.net/npm/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
</head>
<body>
<h1>Hello, world!</h1>
</body>
</html>
However, it seems that the titles appear in a different shade of white compared to the dark mode shown in the official Bootstrap documentation:
Color modes
Bootstrap now offers color modes or themes starting from version 5.3.0. You can explore the default light color mode and the newly introduced dark mode or customize your own theme using Bootstrap styles.
To achieve the same color scheme as Bootstrap's documentation, how can I make this adjustment?