/*
Theme Name: Do Digitals
Theme URI: https://dodigitals.org
Author: Do Digitals Team
Author URI: https://dodigitals.org
Description: A super customizable modular WordPress theme by Do Digitals
Version: 1.4.4
Text Domain: dodigitals
Keywords: custom, modular, digital
*/
/* ==========================================================================
   Dark Mode Variables
   ========================================================================== */
:root {
    /* -- Light Mode Colors (Default) -- */
    --background-color: #f9f9ff;
	--black:#000;
	--white:#fff;
}

html .dark-mode {
    --background-color: #262a2e;
    --black:#fff;
	--white:#000;
}

/* --- Basic Implementation --- */
body {
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
	font-family: var(--theme-font-family, sans-serif);
}
* {
	margin:0;
	padding:0;
}