/* Auto-generated, not hand-written. Regenerate after changing either style
   name below with:

   python -c "
   from pygments.formatters import HtmlFormatter
   def rules_only(style, selector):
       lines = HtmlFormatter(style=style).get_style_defs(selector).split(chr(10))
       return chr(10).join(
           l for l in lines
           if l.strip() != 'pre { line-height: 125%; }'
           and not l.strip().startswith(selector + ' {')
       )
   print(rules_only('friendly', 'html.theme-light .highlight'))
   print()
   print(rules_only('nord', 'html.theme-dark .highlight'))
   "

   Pygments (used via the markdown package's codehilite extension) wraps
   each token in a fenced code block with a <span class="..."> naming its
   syntax role (keyword, string, comment, ...); these rules are what color
   them. Two full sets are generated — one scoped under html.theme-light,
   one under html.theme-dark — since a single set of colors tuned for a
   light background reads poorly on a dark one and vice versa (this was a
   real bug: the original single-style version used colors tuned for white
   backgrounds even when the page was in dark mode). Both sets deliberately
   drop two things the generator produces by default: a bare, unscoped
   `pre { line-height: 125%; }` rule (would apply to every <pre> on the
   site, not just highlighted ones — line-height is already handled by
   this app's own CSS) and each style's own `.highlight { background }`
   rule (style.css supplies that via --accent-bg instead, so the code
   block's background follows the same variable every other themed box on
   the page uses — leaving Pygments' own hardcoded background in would
   have put a second, different-colored, square-cornered background box
   directly behind the rounded one this app draws, showing through at the
   corners). */

td.linenos .normal { color: #666666; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: #666666; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
html.theme-light .highlight .hll { background-color: #ffffcc }
html.theme-light .highlight .c { color: #60A0B0; font-style: italic } /* Comment */
html.theme-light .highlight .err { border: 1px solid #F00 } /* Error */
html.theme-light .highlight .k { color: #007020; font-weight: bold } /* Keyword */
html.theme-light .highlight .o { color: #666 } /* Operator */
html.theme-light .highlight .ch { color: #60A0B0; font-style: italic } /* Comment.Hashbang */
html.theme-light .highlight .cm { color: #60A0B0; font-style: italic } /* Comment.Multiline */
html.theme-light .highlight .cp { color: #007020 } /* Comment.Preproc */
html.theme-light .highlight .cpf { color: #60A0B0; font-style: italic } /* Comment.PreprocFile */
html.theme-light .highlight .c1 { color: #60A0B0; font-style: italic } /* Comment.Single */
html.theme-light .highlight .cs { color: #60A0B0; background-color: #FFF0F0 } /* Comment.Special */
html.theme-light .highlight .gd { color: #A00000 } /* Generic.Deleted */
html.theme-light .highlight .ge { font-style: italic } /* Generic.Emph */
html.theme-light .highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */
html.theme-light .highlight .gr { color: #F00 } /* Generic.Error */
html.theme-light .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
html.theme-light .highlight .gi { color: #00A000 } /* Generic.Inserted */
html.theme-light .highlight .go { color: #888 } /* Generic.Output */
html.theme-light .highlight .gp { color: #C65D09; font-weight: bold } /* Generic.Prompt */
html.theme-light .highlight .gs { font-weight: bold } /* Generic.Strong */
html.theme-light .highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
html.theme-light .highlight .gt { color: #04D } /* Generic.Traceback */
html.theme-light .highlight .kc { color: #007020; font-weight: bold } /* Keyword.Constant */
html.theme-light .highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */
html.theme-light .highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */
html.theme-light .highlight .kp { color: #007020 } /* Keyword.Pseudo */
html.theme-light .highlight .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */
html.theme-light .highlight .kt { color: #902000 } /* Keyword.Type */
html.theme-light .highlight .m { color: #40A070 } /* Literal.Number */
html.theme-light .highlight .s { color: #4070A0 } /* Literal.String */
html.theme-light .highlight .na { color: #4070A0 } /* Name.Attribute */
html.theme-light .highlight .nb { color: #007020 } /* Name.Builtin */
html.theme-light .highlight .nc { color: #0E84B5; font-weight: bold } /* Name.Class */
html.theme-light .highlight .no { color: #60ADD5 } /* Name.Constant */
html.theme-light .highlight .nd { color: #555; font-weight: bold } /* Name.Decorator */
html.theme-light .highlight .ni { color: #D55537; font-weight: bold } /* Name.Entity */
html.theme-light .highlight .ne { color: #007020 } /* Name.Exception */
html.theme-light .highlight .nf { color: #06287E } /* Name.Function */
html.theme-light .highlight .nl { color: #002070; font-weight: bold } /* Name.Label */
html.theme-light .highlight .nn { color: #0E84B5; font-weight: bold } /* Name.Namespace */
html.theme-light .highlight .nt { color: #062873; font-weight: bold } /* Name.Tag */
html.theme-light .highlight .nv { color: #BB60D5 } /* Name.Variable */
html.theme-light .highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */
html.theme-light .highlight .w { color: #BBB } /* Text.Whitespace */
html.theme-light .highlight .mb { color: #40A070 } /* Literal.Number.Bin */
html.theme-light .highlight .mf { color: #40A070 } /* Literal.Number.Float */
html.theme-light .highlight .mh { color: #40A070 } /* Literal.Number.Hex */
html.theme-light .highlight .mi { color: #40A070 } /* Literal.Number.Integer */
html.theme-light .highlight .mo { color: #40A070 } /* Literal.Number.Oct */
html.theme-light .highlight .sa { color: #4070A0 } /* Literal.String.Affix */
html.theme-light .highlight .sb { color: #4070A0 } /* Literal.String.Backtick */
html.theme-light .highlight .sc { color: #4070A0 } /* Literal.String.Char */
html.theme-light .highlight .dl { color: #4070A0 } /* Literal.String.Delimiter */
html.theme-light .highlight .sd { color: #4070A0; font-style: italic } /* Literal.String.Doc */
html.theme-light .highlight .s2 { color: #4070A0 } /* Literal.String.Double */
html.theme-light .highlight .se { color: #4070A0; font-weight: bold } /* Literal.String.Escape */
html.theme-light .highlight .sh { color: #4070A0 } /* Literal.String.Heredoc */
html.theme-light .highlight .si { color: #70A0D0; font-style: italic } /* Literal.String.Interpol */
html.theme-light .highlight .sx { color: #C65D09 } /* Literal.String.Other */
html.theme-light .highlight .sr { color: #235388 } /* Literal.String.Regex */
html.theme-light .highlight .s1 { color: #4070A0 } /* Literal.String.Single */
html.theme-light .highlight .ss { color: #517918 } /* Literal.String.Symbol */
html.theme-light .highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */
html.theme-light .highlight .fm { color: #06287E } /* Name.Function.Magic */
html.theme-light .highlight .vc { color: #BB60D5 } /* Name.Variable.Class */
html.theme-light .highlight .vg { color: #BB60D5 } /* Name.Variable.Global */
html.theme-light .highlight .vi { color: #BB60D5 } /* Name.Variable.Instance */
html.theme-light .highlight .vm { color: #BB60D5 } /* Name.Variable.Magic */
html.theme-light .highlight .il { color: #40A070 } /* Literal.Number.Integer.Long */

td.linenos .normal { color: #D8DEE9; background-color: #242933; padding-left: 5px; padding-right: 5px; }
span.linenos { color: #D8DEE9; background-color: #242933; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #242933; background-color: #D8DEE9; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #242933; background-color: #D8DEE9; padding-left: 5px; padding-right: 5px; }
html.theme-dark .highlight .hll { background-color: #3B4252 }
html.theme-dark .highlight .c { color: #616E87; font-style: italic } /* Comment */
html.theme-dark .highlight .err { color: #BF616A } /* Error */
html.theme-dark .highlight .esc { color: #D8DEE9 } /* Escape */
html.theme-dark .highlight .g { color: #D8DEE9 } /* Generic */
html.theme-dark .highlight .k { color: #81A1C1; font-weight: bold } /* Keyword */
html.theme-dark .highlight .l { color: #D8DEE9 } /* Literal */
html.theme-dark .highlight .n { color: #D8DEE9 } /* Name */
html.theme-dark .highlight .o { color: #81A1C1; font-weight: bold } /* Operator */
html.theme-dark .highlight .x { color: #D8DEE9 } /* Other */
html.theme-dark .highlight .p { color: #ECEFF4 } /* Punctuation */
html.theme-dark .highlight .ch { color: #616E87; font-style: italic } /* Comment.Hashbang */
html.theme-dark .highlight .cm { color: #616E87; font-style: italic } /* Comment.Multiline */
html.theme-dark .highlight .cp { color: #5E81AC; font-style: italic } /* Comment.Preproc */
html.theme-dark .highlight .cpf { color: #616E87; font-style: italic } /* Comment.PreprocFile */
html.theme-dark .highlight .c1 { color: #616E87; font-style: italic } /* Comment.Single */
html.theme-dark .highlight .cs { color: #616E87; font-style: italic } /* Comment.Special */
html.theme-dark .highlight .gd { color: #BF616A } /* Generic.Deleted */
html.theme-dark .highlight .ge { color: #D8DEE9; font-style: italic } /* Generic.Emph */
html.theme-dark .highlight .ges { color: #D8DEE9; font-weight: bold; font-style: italic } /* Generic.EmphStrong */
html.theme-dark .highlight .gr { color: #BF616A } /* Generic.Error */
html.theme-dark .highlight .gh { color: #88C0D0; font-weight: bold } /* Generic.Heading */
html.theme-dark .highlight .gi { color: #A3BE8C } /* Generic.Inserted */
html.theme-dark .highlight .go { color: #D8DEE9 } /* Generic.Output */
html.theme-dark .highlight .gp { color: #616E88; font-weight: bold } /* Generic.Prompt */
html.theme-dark .highlight .gs { color: #D8DEE9; font-weight: bold } /* Generic.Strong */
html.theme-dark .highlight .gu { color: #88C0D0; font-weight: bold } /* Generic.Subheading */
html.theme-dark .highlight .gt { color: #BF616A } /* Generic.Traceback */
html.theme-dark .highlight .kc { color: #81A1C1; font-weight: bold } /* Keyword.Constant */
html.theme-dark .highlight .kd { color: #81A1C1; font-weight: bold } /* Keyword.Declaration */
html.theme-dark .highlight .kn { color: #81A1C1; font-weight: bold } /* Keyword.Namespace */
html.theme-dark .highlight .kp { color: #81A1C1 } /* Keyword.Pseudo */
html.theme-dark .highlight .kr { color: #81A1C1; font-weight: bold } /* Keyword.Reserved */
html.theme-dark .highlight .kt { color: #81A1C1 } /* Keyword.Type */
html.theme-dark .highlight .ld { color: #D8DEE9 } /* Literal.Date */
html.theme-dark .highlight .m { color: #B48EAD } /* Literal.Number */
html.theme-dark .highlight .s { color: #A3BE8C } /* Literal.String */
html.theme-dark .highlight .na { color: #8FBCBB } /* Name.Attribute */
html.theme-dark .highlight .nb { color: #81A1C1 } /* Name.Builtin */
html.theme-dark .highlight .nc { color: #8FBCBB } /* Name.Class */
html.theme-dark .highlight .no { color: #8FBCBB } /* Name.Constant */
html.theme-dark .highlight .nd { color: #D08770 } /* Name.Decorator */
html.theme-dark .highlight .ni { color: #D08770 } /* Name.Entity */
html.theme-dark .highlight .ne { color: #BF616A } /* Name.Exception */
html.theme-dark .highlight .nf { color: #88C0D0 } /* Name.Function */
html.theme-dark .highlight .nl { color: #D8DEE9 } /* Name.Label */
html.theme-dark .highlight .nn { color: #8FBCBB } /* Name.Namespace */
html.theme-dark .highlight .nx { color: #D8DEE9 } /* Name.Other */
html.theme-dark .highlight .py { color: #D8DEE9 } /* Name.Property */
html.theme-dark .highlight .nt { color: #81A1C1 } /* Name.Tag */
html.theme-dark .highlight .nv { color: #D8DEE9 } /* Name.Variable */
html.theme-dark .highlight .ow { color: #81A1C1; font-weight: bold } /* Operator.Word */
html.theme-dark .highlight .pm { color: #ECEFF4 } /* Punctuation.Marker */
html.theme-dark .highlight .w { color: #D8DEE9 } /* Text.Whitespace */
html.theme-dark .highlight .mb { color: #B48EAD } /* Literal.Number.Bin */
html.theme-dark .highlight .mf { color: #B48EAD } /* Literal.Number.Float */
html.theme-dark .highlight .mh { color: #B48EAD } /* Literal.Number.Hex */
html.theme-dark .highlight .mi { color: #B48EAD } /* Literal.Number.Integer */
html.theme-dark .highlight .mo { color: #B48EAD } /* Literal.Number.Oct */
html.theme-dark .highlight .sa { color: #A3BE8C } /* Literal.String.Affix */
html.theme-dark .highlight .sb { color: #A3BE8C } /* Literal.String.Backtick */
html.theme-dark .highlight .sc { color: #A3BE8C } /* Literal.String.Char */
html.theme-dark .highlight .dl { color: #A3BE8C } /* Literal.String.Delimiter */
html.theme-dark .highlight .sd { color: #616E87 } /* Literal.String.Doc */
html.theme-dark .highlight .s2 { color: #A3BE8C } /* Literal.String.Double */
html.theme-dark .highlight .se { color: #EBCB8B } /* Literal.String.Escape */
html.theme-dark .highlight .sh { color: #A3BE8C } /* Literal.String.Heredoc */
html.theme-dark .highlight .si { color: #A3BE8C } /* Literal.String.Interpol */
html.theme-dark .highlight .sx { color: #A3BE8C } /* Literal.String.Other */
html.theme-dark .highlight .sr { color: #EBCB8B } /* Literal.String.Regex */
html.theme-dark .highlight .s1 { color: #A3BE8C } /* Literal.String.Single */
html.theme-dark .highlight .ss { color: #A3BE8C } /* Literal.String.Symbol */
html.theme-dark .highlight .bp { color: #81A1C1 } /* Name.Builtin.Pseudo */
html.theme-dark .highlight .fm { color: #88C0D0 } /* Name.Function.Magic */
html.theme-dark .highlight .vc { color: #D8DEE9 } /* Name.Variable.Class */
html.theme-dark .highlight .vg { color: #D8DEE9 } /* Name.Variable.Global */
html.theme-dark .highlight .vi { color: #D8DEE9 } /* Name.Variable.Instance */
html.theme-dark .highlight .vm { color: #D8DEE9 } /* Name.Variable.Magic */
html.theme-dark .highlight .il { color: #B48EAD } /* Literal.Number.Integer.Long */
