77 lines
1.9 KiB
CSS
77 lines
1.9 KiB
CSS
/**
|
|
* Nord Theme Originally by Arctic Ice Studio
|
|
* https://nordtheme.com
|
|
*
|
|
* Ported for PrismJS by Zane Hitchcoxc (@zwhitchcox) and Gabriel Ramos (@gabrieluizramos)
|
|
* Copied from https://github.com/PrismJS/prism-themes/blob/master/themes/prism-nord.css
|
|
*/
|
|
[data-theme=dark] {
|
|
--code-c-text: #f8f8f2;
|
|
--code-c-bg: #2e3440;
|
|
--code-c-highlight-bg: #343d4e;
|
|
--code-c-line-number: rgba(248, 248, 242, 0.67);
|
|
}
|
|
[data-theme=dark] .token.comment,
|
|
[data-theme=dark] .token.prolog,
|
|
[data-theme=dark] .token.doctype,
|
|
[data-theme=dark] .token.cdata {
|
|
color: #636f88;
|
|
}
|
|
[data-theme=dark] .token.punctuation {
|
|
color: #81a1c1;
|
|
}
|
|
[data-theme=dark] .namespace {
|
|
opacity: 0.7;
|
|
}
|
|
[data-theme=dark] .token.property,
|
|
[data-theme=dark] .token.tag,
|
|
[data-theme=dark] .token.constant,
|
|
[data-theme=dark] .token.symbol,
|
|
[data-theme=dark] .token.deleted {
|
|
color: #81a1c1;
|
|
}
|
|
[data-theme=dark] .token.number {
|
|
color: #b48ead;
|
|
}
|
|
[data-theme=dark] .token.boolean {
|
|
color: #81a1c1;
|
|
}
|
|
[data-theme=dark] .token.selector,
|
|
[data-theme=dark] .token.attr-name,
|
|
[data-theme=dark] .token.string,
|
|
[data-theme=dark] .token.char,
|
|
[data-theme=dark] .token.builtin,
|
|
[data-theme=dark] .token.inserted {
|
|
color: #a3be8c;
|
|
}
|
|
[data-theme=dark] .token.operator,
|
|
[data-theme=dark] .token.entity,
|
|
[data-theme=dark] .token.url,
|
|
[data-theme=dark] .language-css .token.string,
|
|
[data-theme=dark] .style .token.string,
|
|
[data-theme=dark] .token.variable {
|
|
color: #81a1c1;
|
|
}
|
|
[data-theme=dark] .token.atrule,
|
|
[data-theme=dark] .token.attr-value,
|
|
[data-theme=dark] .token.function,
|
|
[data-theme=dark] .token.class-name {
|
|
color: #88c0d0;
|
|
}
|
|
[data-theme=dark] .token.keyword {
|
|
color: #81a1c1;
|
|
}
|
|
[data-theme=dark] .token.regex,
|
|
[data-theme=dark] .token.important {
|
|
color: #ebcb8b;
|
|
}
|
|
[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;
|
|
} |