/* Default theme (light) */
html,
html:has(body.light-theme) {
  --background: #ffffff;
  --background-96: #fffffff5;
  --card: #fafafa;
  --field: #f0f0f0;
  --disabled: #ebebeb;
  --overlay: #181a264d;
  --text-main: #343434;
  --text-secondary: #808080;
  --text-secondary-40: #80808066;
  --text-contrast: #ffffff;
  --divider: #e6e6e6;
  --accent: #5599ff;
  --accent-hover: #69a4fd;
  --accent-10: #5599ff1a;
  --accent-40: #5599ff66;
  --demo: #ffa655;
  --negative: #bf3838;
  --negative-20: #bf383833;
  --positive: #34a322;
  --positive-20: #34a32233;
  --medium: #e6c200;
  --medium-20: #e6c20033;
  --tooltip: #000000e0;
}

/* Light theme */
html:has(body.dark-theme) {
  --background: #232637;
  --background-96: #232637f5;
  --card: #292b3f;
  --field: #30334b;
  --disabled: #2e3142;
  --overlay: #181a26c7;
  --text-main: #ffffff;
  --text-secondary: #797b86;
  --text-secondary-40: #797b8666;
  --text-contrast: #ffffff;
  --divider: #383a57;
  --accent: #5599ff;
  --accent-hover: #69a4fd;
  --accent-10: #5599ff1a;
  --accent-40: #5599ff66;
  --demo: #ffa655;
  --negative: #bf3838;
  --negative-20: #bf383833;
  --positive: #34a322;
  --positive-20: #34a32233;
  --medium: #e6c200;
  --medium-20: #e6c20033;
  --tooltip: #000000e0;
}