88 lines
2.3 KiB
CSS
88 lines
2.3 KiB
CSS
/**
|
|
* MIT License
|
|
* Copyright (c) 2018 Sarah Drasner
|
|
* Sarah Drasner's[@sdras] Night Owl
|
|
* Ported by Sara vieria [@SaraVieira]
|
|
* Added by Souvik Mandal [@SimpleIndian]
|
|
* Copied from https://github.com/PrismJS/prism-themes/blob/master/themes/prism-night-owl.css
|
|
*/
|
|
[data-theme=dark] {
|
|
--code-c-text: #fff;
|
|
--code-c-bg: #011627;
|
|
--code-c-highlight-bg: #02233e;
|
|
--code-c-line-number: rgba(255, 255, 255, 0.67);
|
|
}
|
|
[data-theme=dark] div[class*=language-] pre ::selection {
|
|
background: rgba(29, 59, 83, 0.99);
|
|
}
|
|
[data-theme=dark] .token.comment,
|
|
[data-theme=dark] .token.prolog,
|
|
[data-theme=dark] .token.cdata {
|
|
color: rgb(99, 119, 119);
|
|
font-style: italic;
|
|
}
|
|
[data-theme=dark] .token.punctuation {
|
|
color: rgb(199, 146, 234);
|
|
}
|
|
[data-theme=dark] .namespace {
|
|
color: rgb(178, 204, 214);
|
|
}
|
|
[data-theme=dark] .token.deleted {
|
|
color: rgba(239, 83, 80, 0.56);
|
|
font-style: italic;
|
|
}
|
|
[data-theme=dark] .token.symbol,
|
|
[data-theme=dark] .token.property {
|
|
color: rgb(128, 203, 196);
|
|
}
|
|
[data-theme=dark] .token.tag,
|
|
[data-theme=dark] .token.operator,
|
|
[data-theme=dark] .token.keyword {
|
|
color: rgb(127, 219, 202);
|
|
}
|
|
[data-theme=dark] .token.boolean {
|
|
color: rgb(255, 88, 116);
|
|
}
|
|
[data-theme=dark] .token.number {
|
|
color: rgb(247, 140, 108);
|
|
}
|
|
[data-theme=dark] .token.constant,
|
|
[data-theme=dark] .token.function,
|
|
[data-theme=dark] .token.builtin,
|
|
[data-theme=dark] .token.char {
|
|
color: rgb(130, 170, 255);
|
|
}
|
|
[data-theme=dark] .token.selector,
|
|
[data-theme=dark] .token.doctype {
|
|
color: rgb(199, 146, 234);
|
|
font-style: italic;
|
|
}
|
|
[data-theme=dark] .token.attr-name,
|
|
[data-theme=dark] .token.inserted {
|
|
color: rgb(173, 219, 103);
|
|
font-style: italic;
|
|
}
|
|
[data-theme=dark] .token.string,
|
|
[data-theme=dark] .token.url,
|
|
[data-theme=dark] .token.entity,
|
|
[data-theme=dark] .language-css .token.string,
|
|
[data-theme=dark] .style .token.string {
|
|
color: rgb(173, 219, 103);
|
|
}
|
|
[data-theme=dark] .token.class-name,
|
|
[data-theme=dark] .token.atrule,
|
|
[data-theme=dark] .token.attr-value {
|
|
color: rgb(255, 203, 139);
|
|
}
|
|
[data-theme=dark] .token.regex,
|
|
[data-theme=dark] .token.important,
|
|
[data-theme=dark] .token.variable {
|
|
color: rgb(214, 222, 235);
|
|
}
|
|
[data-theme=dark] .token.important,
|
|
[data-theme=dark] .token.bold {
|
|
font-weight: bold;
|
|
}
|
|
[data-theme=dark] .token.italic {
|
|
font-style: italic;
|
|
} |