Posted in Bootstrap
2193
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
72
This Month
183
This Year
197

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
For a long time it had seemed to me that life was about to begin - real life. But there was always some obstacle in the way, something to be gotten through first, some unfinished business, time still to be served, or a debt to be paid. Then life would begin. At last it dawned on me that these obstacles were my life.
Alfred D. Souza
Random CSS Property

<length>

The <length> CSS data type represents a distance value. Lengths can be used in numerous CSS properties, such as width, height, margin, padding, border-width, font-size, and text-shadow.
length#vh css reference