/* color exemples to apply in style.css */
/*
[data-theme="dark"] {
  --color-background: #1a1a1a;
  --color-header: #aecafa;
  --color-header-text: 0e218d;
  --color-text: #d3d3d3;
  --color-card-bg: #435561;
  --color-link: #24ce24;
}
*/

#dark-light-theme-switch {
  display: flex;
  align-items: center;
}
#dark-light-theme-switch label {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 60px;
}
#dark-light-theme-switch input {
  display: none;
}
#dark-light-theme-switch .slider {
  background-color: white;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
}
#dark-light-theme-switch .slider:before {
  bottom: 4px;
  content: "";
  /*background: url("https://svgshare.com/i/ZE_.svg") rgb(255, 196, 0) no-repeat center center;*/
  background: url("/images/moon.svg") rgb(255, 196, 0) no-repeat center center;
  height: 26px;
  left: 4px;
  position: absolute;
  transition: 0.4s;
  width: 26px;
}
#dark-light-theme-switch input:checked + .slider {
  background-color: rgb(36, 36, 36);
}
#dark-light-theme-switch input:checked + .slider:before {
  transform: translateX(26px);
  content: "";
  /*background: url("https://svgshare.com/i/ZCU.svg") rgb(59, 116, 223) no-repeat center center;*/
  background: url("/images/sun.svg") rgb(59, 116, 223) no-repeat center center;
}
#dark-light-theme-switch .slider.round {
  border-radius: 34px;
}
#dark-light-theme-switch .slider.round:before {
  border-radius: 50%;
}
