78 lines
2.0 KiB
CSS
78 lines
2.0 KiB
CSS
/**
|
|
* Lucario Theme originally by Raphael Amorim [@raphamorim]
|
|
* https://github.com/raphamorim/lucario
|
|
*
|
|
* Ported for PrismJS by Christopher Kapic [@christopher-kapic]
|
|
* Copied from https://github.com/PrismJS/prism-themes/blob/master/themes/prism-lucario.css
|
|
*/
|
|
[data-theme=light] {
|
|
--code-c-text: #f8f8f2;
|
|
--code-c-bg: #263e52;
|
|
--code-c-highlight-bg: #2a4862;
|
|
--code-c-line-number: rgba(248, 248, 242, 0.67);
|
|
}
|
|
[data-theme=light] div[class*=language-] pre {
|
|
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
|
|
}
|
|
[data-theme=light] .token.comment,
|
|
[data-theme=light] .token.prolog,
|
|
[data-theme=light] .token.doctype,
|
|
[data-theme=light] .token.cdata {
|
|
color: #5c98cd;
|
|
}
|
|
[data-theme=light] .token.punctuation {
|
|
color: #f8f8f2;
|
|
}
|
|
[data-theme=light] .namespace {
|
|
opacity: 0.7;
|
|
}
|
|
[data-theme=light] .token.property,
|
|
[data-theme=light] .token.tag,
|
|
[data-theme=light] .token.constant,
|
|
[data-theme=light] .token.symbol,
|
|
[data-theme=light] .token.deleted {
|
|
color: #f05e5d;
|
|
}
|
|
[data-theme=light] .token.boolean,
|
|
[data-theme=light] .token.number {
|
|
color: #bc94f9;
|
|
}
|
|
[data-theme=light] .token.selector,
|
|
[data-theme=light] .token.attr-name,
|
|
[data-theme=light] .token.string,
|
|
[data-theme=light] .token.char,
|
|
[data-theme=light] .token.builtin,
|
|
[data-theme=light] .token.inserted {
|
|
color: #fcfcd6;
|
|
}
|
|
[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,
|
|
[data-theme=light] .token.variable {
|
|
color: #f8f8f2;
|
|
}
|
|
[data-theme=light] .token.atrule,
|
|
[data-theme=light] .token.attr-value,
|
|
[data-theme=light] .token.function,
|
|
[data-theme=light] .token.class-name {
|
|
color: #66d8ef;
|
|
}
|
|
[data-theme=light] .token.keyword {
|
|
color: #6eb26e;
|
|
}
|
|
[data-theme=light] .token.regex,
|
|
[data-theme=light] .token.important {
|
|
color: #f05e5d;
|
|
}
|
|
[data-theme=light] .token.important,
|
|
[data-theme=light] .token.bold {
|
|
font-weight: bold;
|
|
}
|
|
[data-theme=light] .token.italic {
|
|
font-style: italic;
|
|
}
|
|
[data-theme=light] .token.entity {
|
|
cursor: help;
|
|
} |