:root{
  --theme-body: #ffffff;
  --theme-body-color: #171717;
  --theme-primary: #2fad50;
  --theme-primary-alt: #289344;
  --theme-primary-fg: #ffffff;
  --theme-secondary: #289344;
  --theme-primarybg: #ffffff;
  --theme-darkbg: #0c2d15;
  --bs-primary: #2fad50;
  --bs-primary-alt: #289344;
  --bs-secondary: #289344;
  --bs-primary-rgb: 47, 173, 80;
  --bg-primary: #ffffff;
}
html:not(.dark) body{
  background-color: var(--theme-body) !important;
  color: var(--theme-body-color);
}
html.dark body{
  background-color: var(--theme-darkbg) !important;
}
html:not(.dark) .bg-black{
  background-color: var(--theme-primary) !important;
}
html:not(.dark) .bg-black.text-white{
  color: var(--theme-primary-fg) !important;
}
html:not(.dark) .hover\:bg-black\/90:hover{
  background-color: var(--theme-primary-alt) !important;
}
html:not(.dark) .hover\:bg-black\/85:hover{
  background-color: var(--theme-primary-alt) !important;
}
html:not(.dark) .border-black{
  border-color: var(--theme-primary) !important;
}
html.dark .bg-black.dark\:bg-white{
  background-color: var(--theme-primary) !important;
  color: var(--theme-primary-fg) !important;
}
html.dark .bg-black.dark\:text-black{
  color: var(--theme-primary-fg) !important;
}
html.dark .bg-black.dark\:hover\:bg-white\/90:hover,
html.dark .bg-black.hover\:bg-black\/90:hover,
html.dark .bg-black.dark\:hover\:bg-white\/85:hover{
  background-color: var(--theme-primary-alt) !important;
}
.bg-primary{
  background-color: var(--theme-primary) !important;
  color: var(--theme-primary-fg) !important;
}
.border-primary{
  border-color: var(--theme-primary) !important;
}