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

95 lines
2.5 KiB
CSS

/**
* xonokai theme for JavaScript, CSS and HTML
* based on: https://github.com/MoOx/sass-prism-theme-base by Maxime Thirouin ~ MoOx --> http://moox.fr/ , which is Loosely based on Monokai textmate theme by http://www.monokai.nl/
* license: MIT; http://moox.mit-license.org/
* Copied from https://github.com/PrismJS/prism-themes/blob/master/themes/prism-duotone-forest.css
*/
[data-theme=light] {
--code-c-text: #76d9e6;
--code-c-bg: #2a2a2a;
--code-c-highlight-bg: #373232;
--code-c-line-number: rgba(118, 217, 230, 0.67);
}
[data-theme=light] div[class*=language-] pre {
box-shadow: 1px 1px 0.3em -0.1em #000 inset;
tab-size: 2;
}
[data-theme=light] div[class*=language-] pre ::selection {
background: #435643;
}
[data-theme=light] .token.namespace {
opacity: 0.7;
}
[data-theme=light] .token.comment,
[data-theme=light] .token.prolog,
[data-theme=light] .token.doctype,
[data-theme=light] .token.cdata {
color: #6f705e;
}
[data-theme=light] .token.operator,
[data-theme=light] .token.boolean,
[data-theme=light] .token.number {
color: #a77afe;
}
[data-theme=light] .token.attr-name,
[data-theme=light] .token.string {
color: #e6d06c;
}
[data-theme=light] .token.entity,
[data-theme=light] .token.url,
[data-theme=light] .language-css .token.string,
[data-theme=light] .style .token.string {
color: #e6d06c;
}
[data-theme=light] .token.selector,
[data-theme=light] .token.inserted {
color: #a6e22d;
}
[data-theme=light] .token.atrule,
[data-theme=light] .token.attr-value,
[data-theme=light] .token.keyword,
[data-theme=light] .token.important,
[data-theme=light] .token.deleted {
color: #ef3b7d;
}
[data-theme=light] .token.regex,
[data-theme=light] .token.statement {
color: #76d9e6;
}
[data-theme=light] .token.placeholder,
[data-theme=light] .token.variable {
color: #fff;
}
[data-theme=light] .token.important,
[data-theme=light] .token.statement,
[data-theme=light] .token.bold {
font-weight: bold;
}
[data-theme=light] .token.punctuation {
color: #bebec5;
}
[data-theme=light] .token.entity {
cursor: help;
}
[data-theme=light] .token.italic {
font-style: italic;
}
[data-theme=light] .language-markup {
color: #f9f9f9;
}
[data-theme=light] .language-markup .token.tag {
color: #ef3b7d;
}
[data-theme=light] .language-markup .token.attr-name {
color: #a6e22d;
}
[data-theme=light] .language-markup .token.attr-value {
color: #e6d06c;
}
[data-theme=light] .language-markup .token.style,
[data-theme=light] .language-markup .token.script {
color: #76d9e6;
}
[data-theme=light] .language-markup .token.script .token.keyword {
color: #76d9e6;
}