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

78 lines
1.2 KiB
CSS

/**
* MIT License
* Copyright (c) 2021 Ayush Saini
* Holi Theme for prism.js
* @author Ayush Saini <@AyushCodes on Twitter>
* Copied from https://github.com/PrismJS/prism-themes/blob/master/themes/prism-holi-theme.css
*/
:root {
--code-c-text: #d6e7ff;
--code-c-bg: #2a4555;
--code-c-highlight-bg: #2e5064;
--code-c-line-number: rgba(214, 231, 255, 0.67);
}
div[class*=language-] pre ::selection {
background: #1d3b54;
color: inherit;
text-shadow: none;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: #446e69;
}
.token.punctuation {
color: #d6b007;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
color: #d6e7ff;
}
.token.selector,
.token.attr-name,
.token.builtin,
.token.inserted {
color: #e60067;
}
.token.string,
.token.char {
color: #49c6ec;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
background: transparent;
color: #ec8e01;
}
.token.atrule,
.token.attr-value,
.token.keyword {
color: #0fe468;
}
.token.function,
.token.class-name {
color: #78f3e9;
}
.token.regex,
.token.important,
.token.variable {
color: #d6e7ff;
}