96 lines
1.7 KiB
CSS
96 lines
1.7 KiB
CSS
|
/* Base16 Atelier Heath Light - Theme */
|
||
|
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */
|
||
|
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
||
|
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||
|
|
||
|
/* Atelier Heath Light Comment */
|
||
|
pre .comment,
|
||
|
pre .title {
|
||
|
color: #776977;
|
||
|
}
|
||
|
|
||
|
/* Atelier Heath Light Red */
|
||
|
pre .variable,
|
||
|
pre .attribute,
|
||
|
pre .tag,
|
||
|
pre .regexp,
|
||
|
pre .ruby .constant,
|
||
|
pre .xml .tag .title,
|
||
|
pre .xml .pi,
|
||
|
pre .xml .doctype,
|
||
|
pre .html .doctype,
|
||
|
pre .css .id,
|
||
|
pre .css .class,
|
||
|
pre .css .pseudo {
|
||
|
color: #ca402b;
|
||
|
}
|
||
|
|
||
|
/* Atelier Heath Light Orange */
|
||
|
pre .number,
|
||
|
pre .preprocessor,
|
||
|
pre .pragma,
|
||
|
pre .built_in,
|
||
|
pre .literal,
|
||
|
pre .params,
|
||
|
pre .constant {
|
||
|
color: #a65926;
|
||
|
}
|
||
|
|
||
|
/* Atelier Heath Light Yellow */
|
||
|
pre .ruby .class .title,
|
||
|
pre .css .rules .attribute {
|
||
|
color: #bb8a35;
|
||
|
}
|
||
|
|
||
|
/* Atelier Heath Light Green */
|
||
|
pre .string,
|
||
|
pre .value,
|
||
|
pre .inheritance,
|
||
|
pre .header,
|
||
|
pre .ruby .symbol,
|
||
|
pre .xml .cdata {
|
||
|
color: #379a37;
|
||
|
}
|
||
|
|
||
|
/* Atelier Heath Light Aqua */
|
||
|
pre .css .hexcolor {
|
||
|
color: #159393;
|
||
|
}
|
||
|
|
||
|
/* Atelier Heath Light Blue */
|
||
|
pre .function,
|
||
|
pre .python .decorator,
|
||
|
pre .python .title,
|
||
|
pre .ruby .function .title,
|
||
|
pre .ruby .title .keyword,
|
||
|
pre .perl .sub,
|
||
|
pre .javascript .title,
|
||
|
pre .coffeescript .title {
|
||
|
color: #516aec;
|
||
|
}
|
||
|
|
||
|
/* Atelier Heath Light Purple */
|
||
|
pre .keyword,
|
||
|
pre .javascript .function {
|
||
|
color: #7b59c0;
|
||
|
}
|
||
|
|
||
|
pre code {
|
||
|
display: block;
|
||
|
overflow-x: auto;
|
||
|
background: #f7f3f7;
|
||
|
color: #695d69;
|
||
|
padding: 0.5em;
|
||
|
-webkit-text-size-adjust: none;
|
||
|
}
|
||
|
|
||
|
pre .coffeescript .javascript,
|
||
|
pre .javascript .xml,
|
||
|
pre .tex .formula,
|
||
|
pre .xml .javascript,
|
||
|
pre .xml .vbscript,
|
||
|
pre .xml .css,
|
||
|
pre .xml .cdata {
|
||
|
opacity: 0.5;
|
||
|
}
|