84 lines
2.1 KiB
CSS
84 lines
2.1 KiB
CSS
/**
|
|
* Pojoaque Style by Jason Tate
|
|
* http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html
|
|
* Based on Solarized Style from http://ethanschoonover.com/solarized
|
|
* http://softwaremaniacs.org/media/soft/highlight/test.html
|
|
* Copied from https://github.com/PrismJS/prism-themes/blob/master/themes/prism-pojoaque.css
|
|
*/
|
|
[data-theme=dark] {
|
|
--code-c-text: #dccf8f;
|
|
--code-c-bg: #181914;
|
|
--code-c-highlight-bg: #25271d;
|
|
--code-c-line-number: rgba(220, 207, 143, 0.67);
|
|
}
|
|
[data-theme=dark] .token.namespace {
|
|
opacity: 0.7;
|
|
}
|
|
[data-theme=dark] .token.comment,
|
|
[data-theme=dark] .token.prolog,
|
|
[data-theme=dark] .token.doctype,
|
|
[data-theme=dark] .token.cdata {
|
|
color: #586e75;
|
|
font-style: italic;
|
|
}
|
|
[data-theme=dark] .token.number,
|
|
[data-theme=dark] .token.string,
|
|
[data-theme=dark] .token.char,
|
|
[data-theme=dark] .token.builtin,
|
|
[data-theme=dark] .token.inserted {
|
|
color: #468966;
|
|
}
|
|
[data-theme=dark] .token.attr-name {
|
|
color: #b89859;
|
|
}
|
|
[data-theme=dark] .token.operator,
|
|
[data-theme=dark] .token.entity,
|
|
[data-theme=dark] .token.url,
|
|
[data-theme=dark] .language-css .token.string,
|
|
[data-theme=dark] .style .token.string {
|
|
color: #dccf8f;
|
|
}
|
|
[data-theme=dark] .token.selector,
|
|
[data-theme=dark] .token.regex {
|
|
color: #859900;
|
|
}
|
|
[data-theme=dark] .token.atrule,
|
|
[data-theme=dark] .token.keyword {
|
|
color: #cb4b16;
|
|
}
|
|
[data-theme=dark] .token.attr-value {
|
|
color: #468966;
|
|
}
|
|
[data-theme=dark] .token.function,
|
|
[data-theme=dark] .token.variable,
|
|
[data-theme=dark] .token.placeholder {
|
|
color: #b58900;
|
|
}
|
|
[data-theme=dark] .token.property,
|
|
[data-theme=dark] .token.tag,
|
|
[data-theme=dark] .token.boolean,
|
|
[data-theme=dark] .token.number,
|
|
[data-theme=dark] .token.constant,
|
|
[data-theme=dark] .token.symbol {
|
|
color: #b89859;
|
|
}
|
|
[data-theme=dark] .token.tag {
|
|
color: #ffb03b;
|
|
}
|
|
[data-theme=dark] .token.important,
|
|
[data-theme=dark] .token.statement,
|
|
[data-theme=dark] .token.deleted {
|
|
color: #dc322f;
|
|
}
|
|
[data-theme=dark] .token.punctuation {
|
|
color: #dccf8f;
|
|
}
|
|
[data-theme=dark] .token.entity {
|
|
cursor: help;
|
|
}
|
|
[data-theme=dark] .token.bold {
|
|
font-weight: bold;
|
|
}
|
|
[data-theme=dark] .token.italic {
|
|
font-style: italic;
|
|
} |