113 lines
1.6 KiB
CSS
113 lines
1.6 KiB
CSS
/*
|
|
* 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
|
|
*/
|
|
:root {
|
|
--code-c-text: #fff;
|
|
--code-c-bg: #0a143c;
|
|
--code-c-highlight-bg: #0c1a50;
|
|
--code-c-line-number: rgba(255, 255, 255, 0.67);
|
|
}
|
|
|
|
div[class*=language-] pre {
|
|
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
|
|
/* Print */
|
|
}
|
|
@media print {
|
|
div[class*=language-] pre {
|
|
text-shadow: none;
|
|
}
|
|
}
|
|
div[class*=language-] pre ::selection {
|
|
background: rgba(29, 59, 83, 0.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: rgba(239, 83, 80, 0.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;
|
|
} |