
/* 	 		D A R K   M O D E
				D e l e g a t e s   t o   S y s t e m

			Referenz: System Dark Mode / prefers-color-scheme
			Activation via JS: body.theme-dark

			This theme is intentionally minimal.
			It removes all custom theme classes and delegates
			to the system dark mode defined in:
			stylesheet-script-colorswitcher.css

			----------------------------------------------------------
			Version:	1,0		*	2026 05 16
----------------------------------------------------------------------
  							JHM */


	/*	body.theme-dark has no custom rules.
		Dark Mode styling is handled by:

		@media (prefers-color-scheme: dark) { ... }

		in stylesheet-script-colorswitcher.css		*/

/* ======================================================================
   DARK MODE - Header + Footer
   via prefers-color-scheme
   ====================================================================== */
 
@media (prefers-color-scheme: dark) {
    .head-mast {
        background-color: #111213 !important;
    }
    .site-title,
    .site-title a {
        color: #d6d6d6 !important;
    }
    .site-description {
        color: #707070 !important;
    }
    .footer-info {
        background-color: #111213 !important;
        color: #707070 !important;
    }
    .footer-info a {
        color: #909090 !important;
    }
    .footer-info a:hover {
        color: #ffffff !important;
    }
}
 
 
/* ======================================================================
   END OF COLOR THEMES
   ====================================================================== */


/*		----------------------------------------------------------------------
   		end of the stylesheet •	DARK MODE  says goodbye	*/
