2017-07-23 21:22:05 -04:00
|
|
|
/* Solarized Dark
|
|
|
|
|
|
|
|
For use with Jekyll and Pygments
|
|
|
|
|
|
|
|
http://ethanschoonover.com/solarized
|
|
|
|
|
|
|
|
SOLARIZED HEX ROLE
|
|
|
|
--------- -------- ------------------------------------------
|
|
|
|
base03 #002b36 background
|
|
|
|
base01 #586e75 comments / secondary content
|
|
|
|
base1 #93a1a1 body text / default code / primary content
|
|
|
|
orange #cb4b16 constants
|
|
|
|
red #dc322f regex, special keywords
|
|
|
|
blue #268bd2 reserved keywords
|
|
|
|
cyan #2aa198 strings, numbers
|
|
|
|
green #859900 operators, other keywords
|
|
|
|
*/
|
|
|
|
|
|
|
|
pre, code {
|
|
|
|
@include ff--code;
|
|
|
|
@include fs--code;
|
|
|
|
}
|
|
|
|
|
2018-11-18 13:47:20 -05:00
|
|
|
pre {
|
|
|
|
margin-left: -999em;
|
|
|
|
margin-right: -999em;
|
2018-12-08 19:28:54 -05:00
|
|
|
padding: 1.5em 999em 1.5em 999em;
|
2018-11-18 13:47:20 -05:00
|
|
|
}
|
|
|
|
|
2019-01-15 22:55:55 -05:00
|
|
|
// Controls inline backtick blocks
|
2019-01-08 00:16:10 -05:00
|
|
|
code.highlighter-rouge {
|
|
|
|
white-space: nowrap;
|
2019-01-15 22:55:55 -05:00
|
|
|
font-size: 1.6rem;
|
2019-01-08 00:16:10 -05:00
|
|
|
}
|
|
|
|
|
2017-07-23 21:22:05 -04:00
|
|
|
.highlight {
|
|
|
|
border: 1px solid #E8E8EB;
|
|
|
|
|
|
|
|
.gutter {
|
|
|
|
padding: 1.2rem;
|
|
|
|
border-right: 1px solid #E8E8EB;
|
|
|
|
}
|
|
|
|
|
|
|
|
.code {
|
|
|
|
padding: 1.2rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
span.lineno {
|
|
|
|
padding: 1rem;
|
|
|
|
border-right: 1px solid #E8E8EB;
|
|
|
|
}
|
2019-01-26 13:53:18 -05:00
|
|
|
.highlight .hll { background-color: #ffffcc }
|
|
|
|
.highlight { background: #fcfcfc; }
|
|
|
|
.highlight .c { color: #008000 } /* Comment */
|
|
|
|
//.highlight .err { border: 1px solid #FF0000 } /* Error */
|
|
|
|
.highlight .k { color: #0000ff } /* Keyword */
|
|
|
|
.highlight .cm { color: #008000 } /* Comment.Multiline */
|
|
|
|
.highlight .cp { color: #0000ff } /* Comment.Preproc */
|
|
|
|
.highlight .c1 { color: #008000 } /* Comment.Single */
|
|
|
|
.highlight .cs { color: #008000 } /* Comment.Special */
|
2018-11-18 13:47:20 -05:00
|
|
|
.highlight .ge { font-style: italic } /* Generic.Emph */
|
2019-01-26 13:53:18 -05:00
|
|
|
.highlight .gh { font-weight: bold } /* Generic.Heading */
|
|
|
|
.highlight .gp { font-weight: bold } /* Generic.Prompt */
|
2018-11-18 13:47:20 -05:00
|
|
|
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
2019-01-26 13:53:18 -05:00
|
|
|
.highlight .gu { font-weight: bold } /* Generic.Subheading */
|
|
|
|
.highlight .kc { color: #0000ff } /* Keyword.Constant */
|
|
|
|
.highlight .kd { color: #0000ff } /* Keyword.Declaration */
|
|
|
|
.highlight .kn { color: #0000ff } /* Keyword.Namespace */
|
|
|
|
.highlight .kp { color: #0000ff } /* Keyword.Pseudo */
|
|
|
|
.highlight .kr { color: #0000ff } /* Keyword.Reserved */
|
|
|
|
.highlight .kt { color: #2b91af } /* Keyword.Type */
|
|
|
|
.highlight .s { color: #a31515 } /* Literal.String */
|
|
|
|
.highlight .nc { color: #2b91af } /* Name.Class */
|
|
|
|
.highlight .ow { color: #0000ff } /* Operator.Word */
|
|
|
|
.highlight .sb { color: #a31515 } /* Literal.String.Backtick */
|
|
|
|
.highlight .sc { color: #a31515 } /* Literal.String.Char */
|
|
|
|
.highlight .sd { color: #a31515 } /* Literal.String.Doc */
|
|
|
|
.highlight .s2 { color: #a31515 } /* Literal.String.Double */
|
|
|
|
.highlight .se { color: #a31515 } /* Literal.String.Escape */
|
|
|
|
.highlight .sh { color: #a31515 } /* Literal.String.Heredoc */
|
|
|
|
.highlight .si { color: #a31515 } /* Literal.String.Interpol */
|
|
|
|
.highlight .sx { color: #a31515 } /* Literal.String.Other */
|
|
|
|
.highlight .sr { color: #a31515 } /* Literal.String.Regex */
|
|
|
|
.highlight .s1 { color: #a31515 } /* Literal.String.Single */
|
|
|
|
.highlight .ss { color: #a31515 } /* Literal.String.Symbol */
|