91 lines
1.3 KiB
CSS
91 lines
1.3 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
|
|
*/
|
|
:root {
|
|
--code-c-text: #f8f8f2;
|
|
--code-c-bg: #2e3440;
|
|
--code-c-highlight-bg: #343d4e;
|
|
--code-c-line-number: rgba(248, 248, 242, 0.67);
|
|
}
|
|
|
|
.token.comment,
|
|
.token.prolog,
|
|
.token.doctype,
|
|
.token.cdata {
|
|
color: #636f88;
|
|
}
|
|
|
|
.token.punctuation {
|
|
color: #81a1c1;
|
|
}
|
|
|
|
.namespace {
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.token.property,
|
|
.token.tag,
|
|
.token.constant,
|
|
.token.symbol,
|
|
.token.deleted {
|
|
color: #81a1c1;
|
|
}
|
|
|
|
.token.number {
|
|
color: #b48ead;
|
|
}
|
|
|
|
.token.boolean {
|
|
color: #81a1c1;
|
|
}
|
|
|
|
.token.selector,
|
|
.token.attr-name,
|
|
.token.string,
|
|
.token.char,
|
|
.token.builtin,
|
|
.token.inserted {
|
|
color: #a3be8c;
|
|
}
|
|
|
|
.token.operator,
|
|
.token.entity,
|
|
.token.url,
|
|
.language-css .token.string,
|
|
.style .token.string,
|
|
.token.variable {
|
|
color: #81a1c1;
|
|
}
|
|
|
|
.token.atrule,
|
|
.token.attr-value,
|
|
.token.function,
|
|
.token.class-name {
|
|
color: #88c0d0;
|
|
}
|
|
|
|
.token.keyword {
|
|
color: #81a1c1;
|
|
}
|
|
|
|
.token.regex,
|
|
.token.important {
|
|
color: #ebcb8b;
|
|
}
|
|
|
|
.token.important,
|
|
.token.bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.token.italic {
|
|
font-style: italic;
|
|
}
|
|
|
|
.token.entity {
|
|
cursor: help;
|
|
} |