76 lines
1.8 KiB
CSS
76 lines
1.8 KiB
CSS
/*
|
|
* Hopscotch
|
|
* by Jan T. Sott
|
|
* https://github.com/idleberg/Hopscotch
|
|
*
|
|
* This work is licensed under the Creative Commons CC0 1.0 Universal License
|
|
* Copied from https://github.com/PrismJS/prism-themes/blob/master/themes/prism-hopscotch.css
|
|
*/
|
|
[data-theme=light] {
|
|
--code-c-text: #b9b5b8;
|
|
--code-c-bg: #322931;
|
|
--code-c-highlight-bg: #40303e;
|
|
--code-c-line-number: rgba(185, 181, 184, 0.67);
|
|
}
|
|
[data-theme=light] .token.comment,
|
|
[data-theme=light] .token.prolog,
|
|
[data-theme=light] .token.doctype,
|
|
[data-theme=light] .token.cdata {
|
|
color: #797379;
|
|
}
|
|
[data-theme=light] .token.punctuation {
|
|
color: #b9b5b8;
|
|
}
|
|
[data-theme=light] .namespace {
|
|
opacity: 0.7;
|
|
}
|
|
[data-theme=light] .token.null,
|
|
[data-theme=light] .token.operator,
|
|
[data-theme=light] .token.boolean,
|
|
[data-theme=light] .token.number {
|
|
color: #fd8b19;
|
|
}
|
|
[data-theme=light] .token.property {
|
|
color: #fdcc59;
|
|
}
|
|
[data-theme=light] .token.tag {
|
|
color: #1290bf;
|
|
}
|
|
[data-theme=light] .token.string {
|
|
color: #149b93;
|
|
}
|
|
[data-theme=light] .token.selector {
|
|
color: #c85e7c;
|
|
}
|
|
[data-theme=light] .token.attr-name {
|
|
color: #fd8b19;
|
|
}
|
|
[data-theme=light] .token.entity,
|
|
[data-theme=light] .token.url,
|
|
[data-theme=light] .language-css .token.string,
|
|
[data-theme=light] .style .token.string {
|
|
color: #149b93;
|
|
}
|
|
[data-theme=light] .token.attr-value,
|
|
[data-theme=light] .token.keyword,
|
|
[data-theme=light] .token.control,
|
|
[data-theme=light] .token.directive,
|
|
[data-theme=light] .token.unit {
|
|
color: #8fc13e;
|
|
}
|
|
[data-theme=light] .token.statement,
|
|
[data-theme=light] .token.regex,
|
|
[data-theme=light] .token.atrule {
|
|
color: #149b93;
|
|
}
|
|
[data-theme=light] .token.placeholder,
|
|
[data-theme=light] .token.variable {
|
|
color: #1290bf;
|
|
}
|
|
[data-theme=light] .token.important {
|
|
color: #dd464c;
|
|
font-weight: bold;
|
|
}
|
|
[data-theme=light] .token.entity {
|
|
cursor: help;
|
|
} |