110 lines
1.7 KiB
CSS
110 lines
1.7 KiB
CSS
/*
|
|
* Name: Base16 Atelier Sulphurpool Light
|
|
* Author: Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/sulphurpool)
|
|
* Prism template by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/prism/)
|
|
* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16)
|
|
* Copied from https://github.com/PrismJS/prism-themes/blob/master/themes/prism-base16-ateliersulphurpool.light.css
|
|
*/
|
|
:root {
|
|
--code-c-text: #5e6687;
|
|
--code-c-bg: #f5f7ff;
|
|
--code-c-highlight-bg: #dce3ff;
|
|
--code-c-line-number: rgba(94, 102, 135, 0.67);
|
|
}
|
|
|
|
div[class*=language-] pre ::selection {
|
|
background: #dfe2f1;
|
|
}
|
|
|
|
.token.comment,
|
|
.token.prolog,
|
|
.token.doctype,
|
|
.token.cdata {
|
|
color: #898ea4;
|
|
}
|
|
|
|
.token.punctuation {
|
|
color: #5e6687;
|
|
}
|
|
|
|
.token.namespace {
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.token.operator,
|
|
.token.boolean,
|
|
.token.number {
|
|
color: #c76b29;
|
|
}
|
|
|
|
.token.property {
|
|
color: #c08b30;
|
|
}
|
|
|
|
.token.tag {
|
|
color: #3d8fd1;
|
|
}
|
|
|
|
.token.string {
|
|
color: #22a2c9;
|
|
}
|
|
|
|
.token.selector {
|
|
color: #6679cc;
|
|
}
|
|
|
|
.token.attr-name {
|
|
color: #c76b29;
|
|
}
|
|
|
|
.token.entity,
|
|
.token.url,
|
|
.language-css .token.string,
|
|
.style .token.string {
|
|
color: #22a2c9;
|
|
}
|
|
|
|
.token.attr-value,
|
|
.token.keyword,
|
|
.token.control,
|
|
.token.directive,
|
|
.token.unit {
|
|
color: #ac9739;
|
|
}
|
|
|
|
.token.statement,
|
|
.token.regex,
|
|
.token.atrule {
|
|
color: #22a2c9;
|
|
}
|
|
|
|
.token.placeholder,
|
|
.token.variable {
|
|
color: #3d8fd1;
|
|
}
|
|
|
|
.token.deleted {
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
.token.inserted {
|
|
border-bottom: 1px dotted #202746;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.token.italic {
|
|
font-style: italic;
|
|
}
|
|
|
|
.token.important,
|
|
.token.bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.token.important {
|
|
color: #c94922;
|
|
}
|
|
|
|
.token.entity {
|
|
cursor: help;
|
|
} |