/* Light mode */
:root {
  --bs-primary: #E57373;
  --bs-primary-rgb: 229, 115, 115;
  --bs-secondary: #EC407A;
  --bs-secondary-rgb: 236, 64, 122;
}

/* Dark mode 
@media (prefers-color-scheme: dark) {
  :root {
    --bs-primary: #EF9A9A;
    --bs-primary-rgb: 239, 154, 154;
    --bs-secondary: #F48FB1;
    --bs-secondary-rgb: 244, 143, 177;
	--bs-title: #F6D6D6;
	--bs-title-rgb: 246, 214, 214;
	background-color: darkgray; 
  }
}

.text-title {
  color: var(--bs-title);
}*/
