:root {
    --src-bg: #f2f2f2; /* Same as modus-operandi's 'bg-dim' */
}

@media (prefers-color-scheme: dark) {
  :root {
      --src-bg: #1e1e1e; /* Same as modus-vivendi's 'bg-dim' */
  }
}

@font-face {
  font-family: 'DejaVu Sans';
  font-style: regular;
  /* font-weight: 12; */
  src: local('DejaVu Sans'),url(./fonts/DejaVuSans.ttf) format('truetype');
}

@font-face {
  font-family: 'DejaVu Sans Mono';
  font-style: regular;
  /* font-weight: 12; */
  src: local('DejaVu Sans Mono'), url(./fonts/DejaVuSansMono.ttf) format('truetype');
}

* {
    font-family: DejaVu Sans;
}

.org-src-container * {
    font-family: DejaVu Sans Mono;
    font-size: 95%;
    line-height: 1.2em;
    background-color: var(--src-bg);
}
