Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.17 KB

bootstrap-dark.md

File metadata and controls

36 lines (28 loc) · 1.17 KB

Bootstrap-Dark Quick Start

A basic HTML file should look like this:

<!doctype html>
<html lang="en">
  <head>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <!-- The page supports both dark and light color schemes,
         and the page author prefers / default is light. -->
    <meta name="color-scheme" content="light dark">

    <!-- Replace the Bootstrap CSS with the
         Bootstrap-Dark Variant CSS -->
    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap-dark.min.css" rel="stylesheet">

    <title>Hello, world!</title>
  </head>
  <body>
    <!-- ////////////// -->
    <!-- Your HTML here -->
    <!-- \\\\\\\\\\\\\\ -->

    <!-- Optional Bootstrap JavaScript -->
    <script src="location/of/the/bootstrap.js/here"></script>
  </body>
</html>

That's all. The page will automatically transition to Dark Mode when the users sets their OS (or Firefox theme) to Dark Mode.

Refer to the Bootstrap 5 Docs for more help.