/* Atom One Dark */
.hljs{display:block;overflow-x:auto;padding:.5em;color:#abb2bf;background:#282c34}
.hljs-keyword,.hljs-operator{color:#C678DD}
.hljs-pattern-match{color:#f92672}
.hljs-pattern-match .hljs-constructor{color:#61aeee}
.hljs-function{color:#61aeee}
.hljs-function .hljs-params{color:#a6e22e}
.hljs-function .hljs-params .hljs-typing{color:#fd971f}
.hljs-module-access .hljs-module{color:#7e57c2}
.hljs-constructor{color:#e2b93d}
.hljs-constructor .hljs-string{color:#9ccc65}
.hljs-comment,.hljs-quote{color:#5C6370;;font-style:italic}
.hljs-doctag,.hljs-formula{color:#c678dd}
.hljs-deletion,.hljs-name,.hljs-section,.hljs-selector-tag,.hljs-subst{color:#e06c75}
.hljs-literal{color:#D19A66}
.hljs-addition,.hljs-attribute,.hljs-meta-string,.hljs-regexp,.hljs-string{color:#98c379}
.hljs-built_in,.hljs-class{color:#56B6C2}
.hljs-number,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-pseudo,.hljs-template-variable,.hljs-type{color:#d19a66}
.hljs-variable{color:#ABB2BF}
.hljs-attr{color:#E06C75}
.hljs-bullet,.hljs-link,.hljs-meta,.hljs-selector-id,.hljs-symbol{color:#61aeee}
.hljs-title{color:#61AFEF;}
.hljs-emphasis{font-style:italic}
.hljs-strong{font-weight:700}
.hljs-link{text-decoration:underline}
.hljs-property{color:#E06C75}

.docs blockquote > p {
  margin: 0;
}
.docs blockquote > p code {
  background-color: var(--g2);
}

/* all code font family */
.docs pre code, .docs :not(pre) > code  {
  font-family: Menlo, Monaco, Consolas, monospace;
}
.docs pre code, .docs :not(h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a) > code {
  font-size: 0.85rem;
}
.docs pre code {
  color: #ABB2BF;
}

/* highlighted/hljs code blocks */
.docs pre {
  padding: 1rem;
  margin-bottom: 1.33rem;
  overflow: auto;
  border-radius: 0.3rem;
  white-space: pre;
  word-break: break-word;
}

/* fallback for when hljs encounters unknown syntax */
:root[data-theme="light"] .docs pre {
  color: var(--g2);
  background-color: var(--g10);
}
:root[data-theme="dark"] .docs pre {
  color: var(--g8);
  background-color: var(--g0);
}

.docs div[slot='content'] pre {
  border-radius: 0 0.3rem 0.3rem 0.3rem;
}

/* code copy button */
.docs pre button.icon {
  width: 1rem;
  height: 1rem;
  color: white;
}
.docs pre button.icon svg {
  pointer-events: none;
}

/* inline code, not highlighted blocks */
.docs :not(pre) > code {
  background-color: var(--g1);
  padding: 0.1rem 0.2rem;
  margin: 0;
  display: inline;
  overflow-wrap: break-word;
  min-width: auto;
  border-radius: 0.25rem;
}

@media only screen and (min-width:48em) {
  .docs pre {
    white-space: pre-wrap;
  }
}
