96 lines
2.2 KiB
CSS
96 lines
2.2 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
|
|
*/
|
|
[data-theme=dark] {
|
|
--code-c-text: #fff;
|
|
--code-c-bg: #0a143c;
|
|
--code-c-highlight-bg: #0c1a50;
|
|
--code-c-line-number: rgba(255, 255, 255, 0.67);
|
|
}
|
|
[data-theme=dark] div[class*=language-] pre {
|
|
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
|
|
/* Print */
|
|
}
|
|
@media print {
|
|
[data-theme=dark] div[class*=language-] pre {
|
|
text-shadow: none;
|
|
}
|
|
}
|
|
[data-theme=dark] div[class*=language-] pre ::selection {
|
|
background: rgba(29, 59, 83, 0.99);
|
|
text-shadow: none;
|
|
}
|
|
[data-theme=dark] .token.comment,
|
|
[data-theme=dark] .token.prolog,
|
|
[data-theme=dark] .token.cdata {
|
|
color: #637777;
|
|
font-style: italic;
|
|
}
|
|
[data-theme=dark] .token.punctuation {
|
|
color: #c792ea;
|
|
}
|
|
[data-theme=dark] .namespace {
|
|
color: #b2ccd6;
|
|
}
|
|
[data-theme=dark] .token.deleted {
|
|
color: rgba(239, 83, 80, 0.56);
|
|
font-style: italic;
|
|
}
|
|
[data-theme=dark] .token.symbol,
|
|
[data-theme=dark] .token.property {
|
|
color: #80cbc4;
|
|
}
|
|
[data-theme=dark] .token.tag,
|
|
[data-theme=dark] .token.operator,
|
|
[data-theme=dark] .token.keyword {
|
|
color: #7fdbca;
|
|
}
|
|
[data-theme=dark] .token.boolean {
|
|
color: #ff5874;
|
|
}
|
|
[data-theme=dark] .token.number {
|
|
color: #f78c6c;
|
|
}
|
|
[data-theme=dark] .token.constant,
|
|
[data-theme=dark] .token.function,
|
|
[data-theme=dark] .token.builtin,
|
|
[data-theme=dark] .token.char {
|
|
color: #22b7c7;
|
|
}
|
|
[data-theme=dark] .token.selector,
|
|
[data-theme=dark] .token.doctype {
|
|
color: #c792ea;
|
|
font-style: italic;
|
|
}
|
|
[data-theme=dark] .token.attr-name,
|
|
[data-theme=dark] .token.inserted {
|
|
color: #addb67;
|
|
font-style: italic;
|
|
}
|
|
[data-theme=dark] .token.string,
|
|
[data-theme=dark] .token.url,
|
|
[data-theme=dark] .token.entity,
|
|
[data-theme=dark] .language-css .token.string,
|
|
[data-theme=dark] .style .token.string {
|
|
color: #addb67;
|
|
}
|
|
[data-theme=dark] .token.class-name,
|
|
[data-theme=dark] .token.atrule,
|
|
[data-theme=dark] .token.attr-value {
|
|
color: #ffcb8b;
|
|
}
|
|
[data-theme=dark] .token.regex,
|
|
[data-theme=dark] .token.important,
|
|
[data-theme=dark] .token.variable {
|
|
color: #d6deeb;
|
|
}
|
|
[data-theme=dark] .token.important,
|
|
[data-theme=dark] .token.bold {
|
|
font-weight: bold;
|
|
}
|
|
[data-theme=dark] .token.italic {
|
|
font-style: italic;
|
|
} |