
/*
  This file is used for all of your global styles and CSS variables.
  Check here https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties for more info on using CSS variables.
*/
:root {
  --font-family: sans-serif;
}

html, body {
  font-family: var(--font-family);
  padding: 0;
  margin: 0;
  background: #181818;
}

@media (prefers-color-scheme: dark) {
  html,
  body {
    background: #181818;
  }

  fluent-design-system-provider {
    color: white;

    --accent-foreground-rest: white;
  }
}

@media (prefers-color-scheme: light) {
  html,
  body {
    background: white;
    color: black;
  }

  fluent-design-system-provider {
    color: black;
    --fill-color: #edebe9;
    --background-color: white;
    --neutral-foreground-rest: #e5e5e5;
    --neutral-fill-input-rest: #e5e5e5;
    --neutral-fill-input-hover: white;
    --neutral-fill-stealth-rest: #e5e5e5;

    --neutral-fill-rest: #5d5d5d;

    --neutral-fill-input-active: #e5e5e5;
  }

}
