/*
 * Z-Touch
 * by Zeel Codder
 * https://github.com/zeel-codder
 * Copied from https://github.com/PrismJS/prism-themes/blob/master/themes/prism-solarized-dark-atom.css
 */

@use "../../var";

#app {
  @include var.color($code-color: #fff, $code-bg-color: #0a143c);
}

code[class*="language-"],
pre[class*="language-"] {
  text-shadow: 0 1px rgb(0 0 0 / 30%);

  // tab size
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;

  /* Print */
  @media print {
    text-shadow: none;
  }

  // Selection
  &::selection,
  ::selection {
    background: rgb(29 59 83 / 99%);
    text-shadow: none;
  }
}

.token.comment,
.token.prolog,
.token.cdata {
  color: #637777;
  font-style: italic;
}

.token.punctuation {
  color: #c792ea;
}

.namespace {
  color: #b2ccd6;
}

.token.deleted {
  color: rgb(239 83 80 / 56%);
  font-style: italic;
}

.token.symbol,
.token.property {
  color: #80cbc4;
}

.token.tag,
.token.operator,
.token.keyword {
  color: #7fdbca;
}

.token.boolean {
  color: #ff5874;
}

.token.number {
  color: #f78c6c;
}

.token.constant,
.token.function,
.token.builtin,
.token.char {
  color: #22b7c7;
}

.token.selector,
.token.doctype {
  color: #c792ea;
  font-style: italic;
}

.token.attr-name,
.token.inserted {
  color: #addb67;
  font-style: italic;
}

.token.string,
.token.url,
.token.entity,
.language-css .token.string,
.style .token.string {
  color: #addb67;
}

.token.class-name,
.token.atrule,
.token.attr-value {
  color: #ffcb8b;
}

.token.regex,
.token.important,
.token.variable {
  color: #d6deeb;
}

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

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