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

100 lines
2.4 KiB
CSS

/**
* VS theme by Andrew Lock (https://andrewlock.net)
* Inspired by Visual Studio syntax coloring
* Copied from https://github.com/PrismJS/prism-themes/blob/master/themes/prism-vs.css
*/
[data-theme=dark] {
--code-c-text: #393a34;
--code-c-bg: #fff;
--code-c-highlight-bg: #f4f1f1;
--code-c-line-number: rgba(57, 58, 52, 0.67);
}
[data-theme=dark] div[class*=language-] pre ::selection {
background: #c1def1;
}
[data-theme=dark] .token.comment,
[data-theme=dark] .token.prolog,
[data-theme=dark] .token.doctype,
[data-theme=dark] .token.cdata {
color: #008000;
font-style: italic;
}
[data-theme=dark] .token.namespace {
opacity: 0.7;
}
[data-theme=dark] .token.string {
color: #a31515;
}
[data-theme=dark] .token.punctuation,
[data-theme=dark] .token.operator {
color: #393a34; /* no highlight */
}
[data-theme=dark] .token.url,
[data-theme=dark] .token.symbol,
[data-theme=dark] .token.number,
[data-theme=dark] .token.boolean,
[data-theme=dark] .token.variable,
[data-theme=dark] .token.constant,
[data-theme=dark] .token.inserted {
color: #36acaa;
}
[data-theme=dark] .token.atrule,
[data-theme=dark] .token.keyword,
[data-theme=dark] .token.attr-value {
color: #00f;
}
[data-theme=dark] .token.function {
color: #393a34;
}
[data-theme=dark] .token.deleted {
color: #9a050f;
}
[data-theme=dark] .token.selector {
color: #00009f;
}
[data-theme=dark] .token.important {
color: #e90;
}
[data-theme=dark] .token.important,
[data-theme=dark] .token.bold {
font-weight: bold;
}
[data-theme=dark] .token.italic {
font-style: italic;
}
[data-theme=dark] .token.class-name {
color: #2b91af;
}
[data-theme=dark] .token.tag,
[data-theme=dark] .token.selector {
color: #800000;
}
[data-theme=dark] .token.attr-name,
[data-theme=dark] .token.property,
[data-theme=dark] .token.regex,
[data-theme=dark] .token.entity {
color: #f00;
}
[data-theme=dark] .token.directive.tag .tag {
background: #ff0;
color: #393a34;
}
[data-theme=dark] code[class*=language-css] {
color: #00f;
}
[data-theme=dark] .language-autohotkey .token.tag {
color: #9a050f;
}
[data-theme=dark] .language-autohotkey .token.keyword {
color: #00009f;
}
[data-theme=dark] .language-autohotkey .token.selector {
color: #00f;
}
[data-theme=dark] .language-json .token.boolean,
[data-theme=dark] .language-json .token.number {
color: #00f;
}
[data-theme=dark] .language-json .token.property {
color: #2b91af;
}