Posted in Bootstrap
2205
12:21 am, February 23, 2022
 

Added Bootstrap Nightshade Again

I did have a toggle dark mode switch on the top right of this site. 

But i noticed when i loaded in the page it would flash white and then load in the dark mode.

This is really annoying when loading multiple pages on the same site. 

So back to this nightshade again, which just applies light or dark mode depending on your operating system preference, if you like things in dark mode, it just applies it. Easy. 

Maybe the old one was called Nightshade and this one is just called bootstrap dark, anyway this is the css. 

Bootstrap Dark

HTML

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.0.1/dist/css/bootstrap-dark.min.css" />

vs

Bootstrap Nightshade and Toggle

HTML

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.1.3/css/bootstrap-utilities.min.css" integrity="sha512-kRvJclW5GazdbAJPE9vvs560XNBwTBGLg4RVHZALXHFnAWQeRbQ/jGcGDHcQXiiqRld4wEFs6Kpoa6Tm/wCrtg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.1.3/dist/css/bootstrap-nightshade.min.css" rel="stylesheet">

Toggle Code

HTML

<div class="form-check form-switch dark-mode-switch">
  <input class="form-check-input" type="checkbox" id="DarkMode">
  <label class="form-check-label" for="DarkMode">Dark Mode</label>
</div>

Sources

Bootstrap Nightshade

View Statistics
This Week
38
This Month
184
This Year
209

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Items in Bootstrap
Search Articles
Search Articles by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
The problem with hoarding is you end up living off your reserves. Eventually, you’ll become stale. If you give away everything you have, you are left with nothing. This forces you to look, to be aware, to replenish. . . . Somehow the more you give away, the more comes back to you.
Paul Arden
Random CSS Property

<resolution>

The <resolution> CSS data type, used for describing resolutions in media queries, denotes the pixel density of an output device, i.e., its resolution.
<resolution> css reference