:root {
  --code-base-color: #fff;
}

code[class*="language-"],
pre[class*="language-"] {
  font-family: Consolas, "Courier New", Courier, monospace;
  font-size: 90%;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  line-height: 1.5;
  color: var(--code-base-color) !important;
  text-align: left;
  word-break: normal;
  word-wrap: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  white-space: pre;
  background-color: #161616 !important;
  word-spacing: normal;
}

pre[class*="language-"] {
  padding: 0.5em 1em;
  margin: 0.5em 0;
  overflow: auto;
  border: 0.3em solid var(--code-base-color);
  border-radius: 0.5em;
}

code[class*="language-"]::-moz-selection,
code[class*="language-"]::selection,
code[class*="language-"] ::-moz-selection,
code[class*="language-"] ::selection,
pre[class*="language-"]::-moz-selection,
pre[class*="language-"]::selection,
pre[class*="language-"] ::-moz-selection,
pre[class*="language-"] ::selection {
  background-color: #add6ff26;
}

:not(pre)>code[class*="language-"] {
  padding: 0.15em 0.2em 0.05em;
  white-space: normal;
  border: 0.13em solid var(--code-base-color);
  border-radius: 0.3em;
}

.token.annotation,
.token.builtin {
  color: #4ec9b0;
}

.token.boolean {
  color: #569cd6;
}

.token.comment,
.token.doctype {
  color: #6a9955;
}

.token.constant,
.token.class-name {
  color: #4ec9b0;
}

.token.deleted {
  color: #f44747;
}

.token.function {
  color: #e6e678;
}

.token.keyword {
  color: #569cd6;
}

.token.macro.property {
  color: #569cd6;
}

.token.number {
  color: #1ac9c3;
}

.token.operator {
  color: var(--code-base-color);
}

.token.punctuation {
  color: #d1d1d1;
}


.token.tag .token.attr-name {
  color: #9cdcfe;
}

.token.tag .token.attr-value {
  color: #ce9178;
}

.token.tag .token.attr-value.punctuation {
  color: #ce9178;
}

.token.tag .token.class-name {
  color: #4ec9b0;
}

.token.tag .token.punctuation {
  color: var(--code-base-color);
  opacity: 0.7;
}

.token.tag .token.tag {
  color: #569cd6;
}

/* .token.url {}  */

.token.parent.important {
  color: #569cd6;
}

.token.property {
  color: #9cdcfe;
}

.token.regex {
  color: #646695;
}

.token.rule {
  color: #569cd6;
}

.token.selector {
  color: #d7ba7d;
}

.token.string {
  color: #ce9178;
}

.token.variable {
  color: #9cdcfe;
}

code.language-tsx .token.interpolation .interpolation-punctuation,
code.language-jsx .token.interpolation .interpolation-punctuation,
pre.language-tsx .token.interpolation .interpolation-punctuation,
pre.language-jsx .token.interpolation .interpolation-punctuation {
  color: #569cd6;
}

code.language-tsx .token.tag .token.script .token.punctuation,
code.language-jsx .token.tag .token.script .token.punctuation,
pre.language-tsx .token.tag .token.script .token.punctuation,
pre.language-jsx .token.tag .token.script .token.punctuation {
  color: #569cd6;
}

code.language-tsx .token.tag .token.script .token.script-punctuation,
code.language-jsx .token.tag .token.script .token.script-punctuation,
pre.language-tsx .token.tag .token.script .token.script-punctuation,
pre.language-jsx .token.tag .token.script .token.script-punctuation {
  color: var(--code-base-color);
  opacity: 0.7;
}

code.language-sass .token.property,
code.language-scss .token.property {
  color: #9cdcfe;
}