code[class*=language-],
pre[class*=language-] {
  color: var(--token-base);
  background: none;
  font-family: var(--code-font-family);
  font-size: var(--code-font-size);
  font-weight: var(--code-font-weight);
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

pre[class*=language-] {
  padding: 1em;
  margin: .5em 0;
  overflow: auto;
}

:not(pre) > code[class*=language-],
pre[class*=language-] {
  background: var(--background-elevated);
}

:not(pre) > code[class*=language-] {
  padding: .1em;
  border-radius: .3em;
  white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata,
.token.block-comment { color: var(--token-comment); font-style: italic; }

.token.punctuation { color: var(--token-punctuation); }

.token.tag,
.token.attr-name,
.token.namespace,
.token.deleted { color: var(--token-datatype); }

.token.function-name { color: var(--token-identifier); }

.token.boolean,
.token.number,
.token.function { color: var(--token-literal); }

.token.class-name,
.token.constant,
.token.property,
.token.symbol { color: var(--token-datatype); }

.token.atrule,
.token.builtin,
.token.important,
.token.keyword,
.token.selector { color: var(--token-keyword); }

.token.attr-value,
.token.char,
.token.regex,
.token.string,
.token.variable { color: var(--token-literal); }

.token.entity,
.token.operator,
.token.url { color: var(--token-operator); }

.token.bold,
.token.important { font-weight: 700; }

.token.italic { font-style: italic; }

.token.entity { cursor: help; }

.token.inserted { color: var(--token-identifier); }
