Posts

Showing posts from October, 2025

How to enable Dark Mode in Blogger Website

Watch this video for procedure: Youtube video Copy the below code:  <!DOCTYPE html> <html lang="en"> <head>   <meta charset="UTF-8">   <meta name="viewport" content="width=device-width, initial-scale=1.0">   <style>     /* Root Variables for Light and Dark Modes */     :root {       --bg-light: #ffffff;       --text-light: #000000;       --bg-dark: #121212;       --text-dark: #ffffff;     }     /* Default Light Mode */     body {       background-color: var(--bg-light);       color: var(--text-light);       font-family: Arial, sans-serif;       margin: 0;       transition: background-color 0.3s, color 0.3s;     }     /* Dark Mode */     body.dark-mode {       background-color: var(--bg-dark);    ...
Dark Mode