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

152 lines
2.5 KiB
CSS

/**
* Coldark Theme for Prism.js
* Theme variation: Dark
* Tested with HTML, CSS, JS, JSON, PHP, YAML, Bash script
* @author Armand Philippot <contact@armandphilippot.com>
* @homepage https://github.com/ArmandPhilippot/coldark-prism
* @license MIT
* Copied from https://github.com/PrismJS/prism-themes/blob/master/themes/prism-coldark-dark.css
*/
:root {
--code-c-text: #e3eaf2;
--code-c-bg: #111b27;
--code-c-highlight-bg: #172638;
--code-c-line-number: rgba(227, 234, 242, 0.67);
}
div[class*=language-] pre ::selection {
background: #3c526d;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: #8da1b9;
}
.token.punctuation {
color: #e3eaf2;
}
.token.delimiter.important,
.token.selector .parent,
.token.tag,
.token.tag .token.punctuation {
color: #6cc;
}
.token.attr-name,
.token.boolean,
.token.boolean.important,
.token.number,
.token.constant,
.token.selector .token.attribute {
color: #e6d37a;
}
.token.class-name,
.token.key,
.token.parameter,
.token.property,
.token.property-access,
.token.variable {
color: #6cb8e6;
}
.token.attr-value,
.token.inserted,
.token.color,
.token.selector .token.value,
.token.string,
.token.string .token.url-link {
color: #91d076;
}
.token.builtin,
.token.keyword-array,
.token.package,
.token.regex {
color: #f4adf4;
}
.token.function,
.token.selector .token.class,
.token.selector .token.id {
color: #c699e3;
}
.token.atrule .token.rule,
.token.combinator,
.token.keyword,
.token.operator,
.token.pseudo-class,
.token.pseudo-element,
.token.selector,
.token.unit {
color: #e9ae7e;
}
.token.deleted,
.token.important {
color: #cd6660;
}
.token.keyword-this,
.token.this {
color: #6cb8e6;
}
.token.important,
.token.keyword-this,
.token.this,
.token.bold {
font-weight: bold;
}
.token.delimiter.important {
font-weight: inherit;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}
.language-markdown .token.title,
.language-markdown .token.title .token.punctuation {
color: #6cb8e6;
font-weight: bold;
}
.language-markdown .token.code {
color: #6cc;
}
.language-markdown .token.url-link {
color: #e6d37a;
}
.language-markdown .token.table-header {
color: #e3eaf2;
}
.language-markdown .token.blockquote.punctuation {
color: #f4adf4;
}
.language-markdown .token.hr.punctuation {
color: #6cb8e6;
}
.language-markdown .token.list.punctuation {
color: #f4adf4;
}
.language-markdown .token.url .token.content {
color: #91d076;
}
.language-json .token.operator {
color: #e3eaf2;
}
.language-scss .token.variable {
color: #6cc;
}