Newer
Older
smart-home-server / webclient-vue / src / styles / prism-theme.css
/* PrismJS custom theme — matches gnexus-ui-kit dark palette */

pre[class*="language-"],
code[class*="language-"] {
  color: #c0caf5;
  background: none;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  tab-size: 2;
  hyphens: none;
}

pre[class*="language-"] {
  padding: 14px;
  margin: 0;
  overflow: auto;
  background: #11131a;
  border: 1px solid rgba(192, 202, 245, 0.12);
}

/* Tokens */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #565f89;
}

.token.punctuation {
  color: #7aa2f7;
}

.token.namespace {
  opacity: 0.7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
  color: #ff9e64;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #9ece6a;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: #89ddff;
  background: none;
}

.token.atrule,
.token.attr-value,
.token.keyword {
  color: #bb9af7;
}

.token.function,
.token.class-name {
  color: #0db9d7;
}

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

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

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

.token.entity {
  cursor: help;
}