test/node_modules/@vuepress/plugin-prismjs/lib/client/styles/coy.dark.css
2024-08-13 09:27:52 +08:00

80 lines
2.1 KiB
CSS

/**
* prism.js Coy theme for JavaScript, CoffeeScript, CSS and HTML
* Based on https://github.com/tshedor/workshop-wp-theme (Example: http://workshop.kansan.com/category/sessions/basics or http://workshop.timshedor.com/category/sessions/basics);
* @author Tim Shedor
*/
[data-theme=dark] {
--code-c-text: #000;
--code-c-bg: #fdfdfd;
--code-c-highlight-bg: #f2efef;
--code-c-line-number: rgba(0, 0, 0, 0.67);
}
[data-theme=dark] div[class*=language-] pre ::selection {
background: #b3d4fc;
}
[data-theme=dark] .token.comment,
[data-theme=dark] .token.block-comment,
[data-theme=dark] .token.prolog,
[data-theme=dark] .token.doctype,
[data-theme=dark] .token.cdata {
color: #7d8b99;
}
[data-theme=dark] .token.punctuation {
color: #5f6364;
}
[data-theme=dark] .token.property,
[data-theme=dark] .token.tag,
[data-theme=dark] .token.boolean,
[data-theme=dark] .token.number,
[data-theme=dark] .token.function-name,
[data-theme=dark] .token.constant,
[data-theme=dark] .token.symbol,
[data-theme=dark] .token.deleted {
color: #c92c2c;
}
[data-theme=dark] .token.selector,
[data-theme=dark] .token.attr-name,
[data-theme=dark] .token.string,
[data-theme=dark] .token.char,
[data-theme=dark] .token.function,
[data-theme=dark] .token.builtin,
[data-theme=dark] .token.inserted {
color: #2f9c0a;
}
[data-theme=dark] .token.operator,
[data-theme=dark] .token.entity,
[data-theme=dark] .token.url,
[data-theme=dark] .token.variable {
background: rgba(255, 255, 255, 0.5);
color: #a67f59;
}
[data-theme=dark] .token.atrule,
[data-theme=dark] .token.attr-value,
[data-theme=dark] .token.keyword,
[data-theme=dark] .token.class-name {
color: #1990b8;
}
[data-theme=dark] .token.regex,
[data-theme=dark] .token.important {
color: #e90;
}
[data-theme=dark] .language-css .token.string,
[data-theme=dark] .style .token.string {
background: rgba(255, 255, 255, 0.5);
color: #a67f59;
}
[data-theme=dark] .token.important {
font-weight: normal;
}
[data-theme=dark] .token.bold {
font-weight: bold;
}
[data-theme=dark] .token.italic {
font-style: italic;
}
[data-theme=dark] .token.entity {
cursor: help;
}
[data-theme=dark] .token.namespace {
opacity: 0.7;
}