130 lines
2.5 KiB
CSS
130 lines
2.5 KiB
CSS
/**
|
|
* Copied from https://github.com/PrismJS/prism-themes/blob/master/themes/prism-material-dark.css
|
|
*/
|
|
[data-theme=dark] {
|
|
--code-c-text: #eee;
|
|
--code-c-bg: #2f2f2f;
|
|
--code-c-highlight-bg: #3c3737;
|
|
--code-c-line-number: rgba(238, 238, 238, 0.67);
|
|
}
|
|
[data-theme=dark] div[class*=language-] pre ::selection {
|
|
background: #363636;
|
|
}
|
|
[data-theme=dark] .language-css > code,
|
|
[data-theme=dark] .language-sass > code,
|
|
[data-theme=dark] .language-scss > code {
|
|
color: #fd9170;
|
|
}
|
|
[data-theme=dark] [class*=language-] .namespace {
|
|
opacity: 0.7;
|
|
}
|
|
[data-theme=dark] .token.atrule {
|
|
color: #c792ea;
|
|
}
|
|
[data-theme=dark] .token.attr-name {
|
|
color: #ffcb6b;
|
|
}
|
|
[data-theme=dark] .token.attr-value {
|
|
color: #a5e844;
|
|
}
|
|
[data-theme=dark] .token.attribute {
|
|
color: #a5e844;
|
|
}
|
|
[data-theme=dark] .token.boolean {
|
|
color: #c792ea;
|
|
}
|
|
[data-theme=dark] .token.builtin {
|
|
color: #ffcb6b;
|
|
}
|
|
[data-theme=dark] .token.cdata {
|
|
color: #80cbc4;
|
|
}
|
|
[data-theme=dark] .token.char {
|
|
color: #80cbc4;
|
|
}
|
|
[data-theme=dark] .token.class {
|
|
color: #ffcb6b;
|
|
}
|
|
[data-theme=dark] .token.class-name {
|
|
color: #f2ff00;
|
|
}
|
|
[data-theme=dark] .token.comment {
|
|
color: #616161;
|
|
}
|
|
[data-theme=dark] .token.constant {
|
|
color: #c792ea;
|
|
}
|
|
[data-theme=dark] .token.deleted {
|
|
color: #f66;
|
|
}
|
|
[data-theme=dark] .token.doctype {
|
|
color: #616161;
|
|
}
|
|
[data-theme=dark] .token.entity {
|
|
color: #f66;
|
|
}
|
|
[data-theme=dark] .token.function {
|
|
color: #c792ea;
|
|
}
|
|
[data-theme=dark] .token.hexcode {
|
|
color: #f2ff00;
|
|
}
|
|
[data-theme=dark] .token.id {
|
|
color: #c792ea;
|
|
font-weight: bold;
|
|
}
|
|
[data-theme=dark] .token.important {
|
|
color: #c792ea;
|
|
font-weight: bold;
|
|
}
|
|
[data-theme=dark] .token.inserted {
|
|
color: #80cbc4;
|
|
}
|
|
[data-theme=dark] .token.keyword {
|
|
color: #c792ea;
|
|
}
|
|
[data-theme=dark] .token.number {
|
|
color: #fd9170;
|
|
}
|
|
[data-theme=dark] .token.operator {
|
|
color: #89ddff;
|
|
}
|
|
[data-theme=dark] .token.prolog {
|
|
color: #616161;
|
|
}
|
|
[data-theme=dark] .token.property {
|
|
color: #80cbc4;
|
|
}
|
|
[data-theme=dark] .token.pseudo-class {
|
|
color: #a5e844;
|
|
}
|
|
[data-theme=dark] .token.pseudo-element {
|
|
color: #a5e844;
|
|
}
|
|
[data-theme=dark] .token.punctuation {
|
|
color: #89ddff;
|
|
}
|
|
[data-theme=dark] .token.regex {
|
|
color: #f2ff00;
|
|
}
|
|
[data-theme=dark] .token.selector {
|
|
color: #f66;
|
|
}
|
|
[data-theme=dark] .token.string {
|
|
color: #a5e844;
|
|
}
|
|
[data-theme=dark] .token.symbol {
|
|
color: #c792ea;
|
|
}
|
|
[data-theme=dark] .token.tag {
|
|
color: #f66;
|
|
}
|
|
[data-theme=dark] .token.unit {
|
|
color: #fd9170;
|
|
}
|
|
[data-theme=dark] .token.url {
|
|
color: #f66;
|
|
}
|
|
[data-theme=dark] .token.variable {
|
|
color: #f66;
|
|
} |