68 lines
1.8 KiB
CSS
68 lines
1.8 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
|
|
*/
|
|
[data-theme=light] {
|
|
--code-c-text: #d6e7ff;
|
|
--code-c-bg: #2a4555;
|
|
--code-c-highlight-bg: #2e5064;
|
|
--code-c-line-number: rgba(214, 231, 255, 0.67);
|
|
}
|
|
[data-theme=light] div[class*=language-] pre ::selection {
|
|
background: #1d3b54;
|
|
color: inherit;
|
|
text-shadow: none;
|
|
}
|
|
[data-theme=light] .token.comment,
|
|
[data-theme=light] .token.prolog,
|
|
[data-theme=light] .token.doctype,
|
|
[data-theme=light] .token.cdata {
|
|
color: #446e69;
|
|
}
|
|
[data-theme=light] .token.punctuation {
|
|
color: #d6b007;
|
|
}
|
|
[data-theme=light] .token.property,
|
|
[data-theme=light] .token.tag,
|
|
[data-theme=light] .token.boolean,
|
|
[data-theme=light] .token.number,
|
|
[data-theme=light] .token.constant,
|
|
[data-theme=light] .token.symbol,
|
|
[data-theme=light] .token.deleted {
|
|
color: #d6e7ff;
|
|
}
|
|
[data-theme=light] .token.selector,
|
|
[data-theme=light] .token.attr-name,
|
|
[data-theme=light] .token.builtin,
|
|
[data-theme=light] .token.inserted {
|
|
color: #e60067;
|
|
}
|
|
[data-theme=light] .token.string,
|
|
[data-theme=light] .token.char {
|
|
color: #49c6ec;
|
|
}
|
|
[data-theme=light] .token.operator,
|
|
[data-theme=light] .token.entity,
|
|
[data-theme=light] .token.url,
|
|
[data-theme=light] .language-css .token.string,
|
|
[data-theme=light] .style .token.string {
|
|
background: transparent;
|
|
color: #ec8e01;
|
|
}
|
|
[data-theme=light] .token.atrule,
|
|
[data-theme=light] .token.attr-value,
|
|
[data-theme=light] .token.keyword {
|
|
color: #0fe468;
|
|
}
|
|
[data-theme=light] .token.function,
|
|
[data-theme=light] .token.class-name {
|
|
color: #78f3e9;
|
|
}
|
|
[data-theme=light] .token.regex,
|
|
[data-theme=light] .token.important,
|
|
[data-theme=light] .token.variable {
|
|
color: #d6e7ff;
|
|
} |