73 lines
1.8 KiB
CSS
73 lines
1.8 KiB
CSS
/**
|
|
* prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
|
|
* Based on https://github.com/chriskempson/tomorrow-theme
|
|
* @author Rose Pritchard
|
|
*/
|
|
[data-theme=dark] {
|
|
--code-c-text: #ccc;
|
|
--code-c-bg: #2d2d2d;
|
|
--code-c-highlight-bg: #3a3535;
|
|
--code-c-line-number: rgba(204, 204, 204, 0.67);
|
|
}
|
|
[data-theme=dark] .token.comment,
|
|
[data-theme=dark] .token.block-comment,
|
|
[data-theme=dark] .token.prolog,
|
|
[data-theme=dark] .token.doctype,
|
|
[data-theme=dark] .token.cdata {
|
|
color: #999;
|
|
}
|
|
[data-theme=dark] .token.punctuation {
|
|
color: #ccc;
|
|
}
|
|
[data-theme=dark] .token.tag,
|
|
[data-theme=dark] .token.attr-name,
|
|
[data-theme=dark] .token.namespace,
|
|
[data-theme=dark] .token.deleted {
|
|
color: #e2777a;
|
|
}
|
|
[data-theme=dark] .token.function-name {
|
|
color: #6196cc;
|
|
}
|
|
[data-theme=dark] .token.boolean,
|
|
[data-theme=dark] .token.number,
|
|
[data-theme=dark] .token.function {
|
|
color: #f08d49;
|
|
}
|
|
[data-theme=dark] .token.property,
|
|
[data-theme=dark] .token.class-name,
|
|
[data-theme=dark] .token.constant,
|
|
[data-theme=dark] .token.symbol {
|
|
color: #f8c555;
|
|
}
|
|
[data-theme=dark] .token.selector,
|
|
[data-theme=dark] .token.important,
|
|
[data-theme=dark] .token.atrule,
|
|
[data-theme=dark] .token.keyword,
|
|
[data-theme=dark] .token.builtin {
|
|
color: #cc99cd;
|
|
}
|
|
[data-theme=dark] .token.string,
|
|
[data-theme=dark] .token.char,
|
|
[data-theme=dark] .token.attr-value,
|
|
[data-theme=dark] .token.regex,
|
|
[data-theme=dark] .token.variable {
|
|
color: #7ec699;
|
|
}
|
|
[data-theme=dark] .token.operator,
|
|
[data-theme=dark] .token.entity,
|
|
[data-theme=dark] .token.url {
|
|
color: #67cdcc;
|
|
}
|
|
[data-theme=dark] .token.important,
|
|
[data-theme=dark] .token.bold {
|
|
font-weight: bold;
|
|
}
|
|
[data-theme=dark] .token.italic {
|
|
font-style: italic;
|
|
}
|
|
[data-theme=dark] .token.entity {
|
|
cursor: help;
|
|
}
|
|
[data-theme=dark] .token.inserted {
|
|
color: #008000;
|
|
} |