131 lines
2.5 KiB
CSS
131 lines
2.5 KiB
CSS
/**
|
|
* Copied from https://github.com/PrismJS/prism-themes/blob/master/themes/prism-material-light.css
|
|
*/
|
|
[data-theme=dark] {
|
|
--code-c-text: #90a4ae;
|
|
--code-c-bg: #fafafa;
|
|
--code-c-highlight-bg: #efecec;
|
|
--code-c-line-number: rgba(144, 164, 174, 0.67);
|
|
}
|
|
[data-theme=dark] div[class*=language-] pre ::selection {
|
|
background: #cceae7;
|
|
color: #263238;
|
|
}
|
|
[data-theme=dark] .language-css > code,
|
|
[data-theme=dark] .language-sass > code,
|
|
[data-theme=dark] .language-scss > code {
|
|
color: #f76d47;
|
|
}
|
|
[data-theme=dark] [class*=language-] .namespace {
|
|
opacity: 0.7;
|
|
}
|
|
[data-theme=dark] .token.atrule {
|
|
color: #7c4dff;
|
|
}
|
|
[data-theme=dark] .token.attr-name {
|
|
color: #39adb5;
|
|
}
|
|
[data-theme=dark] .token.attr-value {
|
|
color: #f6a434;
|
|
}
|
|
[data-theme=dark] .token.attribute {
|
|
color: #f6a434;
|
|
}
|
|
[data-theme=dark] .token.boolean {
|
|
color: #7c4dff;
|
|
}
|
|
[data-theme=dark] .token.builtin {
|
|
color: #39adb5;
|
|
}
|
|
[data-theme=dark] .token.cdata {
|
|
color: #39adb5;
|
|
}
|
|
[data-theme=dark] .token.char {
|
|
color: #39adb5;
|
|
}
|
|
[data-theme=dark] .token.class {
|
|
color: #39adb5;
|
|
}
|
|
[data-theme=dark] .token.class-name {
|
|
color: #6182b8;
|
|
}
|
|
[data-theme=dark] .token.comment {
|
|
color: #aabfc9;
|
|
}
|
|
[data-theme=dark] .token.constant {
|
|
color: #7c4dff;
|
|
}
|
|
[data-theme=dark] .token.deleted {
|
|
color: #e53935;
|
|
}
|
|
[data-theme=dark] .token.doctype {
|
|
color: #aabfc9;
|
|
}
|
|
[data-theme=dark] .token.entity {
|
|
color: #e53935;
|
|
}
|
|
[data-theme=dark] .token.function {
|
|
color: #7c4dff;
|
|
}
|
|
[data-theme=dark] .token.hexcode {
|
|
color: #f76d47;
|
|
}
|
|
[data-theme=dark] .token.id {
|
|
color: #7c4dff;
|
|
font-weight: bold;
|
|
}
|
|
[data-theme=dark] .token.important {
|
|
color: #7c4dff;
|
|
font-weight: bold;
|
|
}
|
|
[data-theme=dark] .token.inserted {
|
|
color: #39adb5;
|
|
}
|
|
[data-theme=dark] .token.keyword {
|
|
color: #7c4dff;
|
|
}
|
|
[data-theme=dark] .token.number {
|
|
color: #f76d47;
|
|
}
|
|
[data-theme=dark] .token.operator {
|
|
color: #39adb5;
|
|
}
|
|
[data-theme=dark] .token.prolog {
|
|
color: #aabfc9;
|
|
}
|
|
[data-theme=dark] .token.property {
|
|
color: #39adb5;
|
|
}
|
|
[data-theme=dark] .token.pseudo-class {
|
|
color: #f6a434;
|
|
}
|
|
[data-theme=dark] .token.pseudo-element {
|
|
color: #f6a434;
|
|
}
|
|
[data-theme=dark] .token.punctuation {
|
|
color: #39adb5;
|
|
}
|
|
[data-theme=dark] .token.regex {
|
|
color: #6182b8;
|
|
}
|
|
[data-theme=dark] .token.selector {
|
|
color: #e53935;
|
|
}
|
|
[data-theme=dark] .token.string {
|
|
color: #f6a434;
|
|
}
|
|
[data-theme=dark] .token.symbol {
|
|
color: #7c4dff;
|
|
}
|
|
[data-theme=dark] .token.tag {
|
|
color: #e53935;
|
|
}
|
|
[data-theme=dark] .token.unit {
|
|
color: #f76d47;
|
|
}
|
|
[data-theme=dark] .token.url {
|
|
color: #e53935;
|
|
}
|
|
[data-theme=dark] .token.variable {
|
|
color: #e53935;
|
|
} |