
/*
  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: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --app-color-primary: #212121;
}

html, body {
  font-family: var(--font-family);
  font-weight: lighter;
  padding: 0;
  margin: 0;
}

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

  fast-design-system-provider {
    color: #212121;
    --background-color: #ffff;
    --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;
  }
}

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

  fast-design-system-provider {
    color: white;
    --background-color:#212121;

  }
}