
/*
  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;
}

.green {
  color:#5DB075;
}

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

  fast-design-system-provider {
    color: black;
    --background-color: #fff;
    --neutral-foreground-rest: #fff;
    --neutral-fill-input-rest: #fff;
    --neutral-fill-input-hover: white;
    --neutral-fill-stealth-rest: #fff;

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

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

}