:root, html, *[theme="light"] {
  --background-color: rgb(237, 239, 242);
  --secondary-color: #2196f3;
  --tertiary-color: #d2e3fc;
  --text-color: rgb(33, 150, 243);
  --background-light: #ffffff;
  --icon-color: rgb(50, 51, 57);
  --active-color: rgb(33, 150, 243);
}

*[theme="dark"] {
  --background-color: rgb(0, 0, 0);
  --secondary-color: #2196f3;
  --tertiary-color: #d2e3fc;
  --text-color: rgb(33, 150, 243);
  --background-light: #080808;
  --icon-color: rgb(169, 173, 185);
  --active-color: rgb(33, 150, 243);
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

a {
  color: var(--text-color);
}
