oinam-jekyll 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +16 -1
- data/_includes/css/highlighter/autumn.css +66 -0
- data/_includes/css/highlighter/borland.css +52 -0
- data/_includes/css/highlighter/bw.css +39 -0
- data/_includes/css/highlighter/colorful.css +69 -0
- data/_includes/css/highlighter/default.css +1 -1
- data/_includes/css/highlighter/emacs.css +69 -0
- data/_includes/css/highlighter/friendly.css +69 -0
- data/_includes/css/highlighter/fruity.css +78 -0
- data/_includes/css/highlighter/manni.css +69 -0
- data/_includes/css/highlighter/monokai.css +1 -1
- data/_includes/css/highlighter/murphy.css +69 -0
- data/_includes/css/highlighter/native.css +78 -0
- data/_includes/css/highlighter/pastie.css +68 -0
- data/_includes/css/highlighter/tango.css +77 -0
- data/_includes/css/highlighter/trac.css +67 -0
- data/_includes/css/highlighter/vim.css +78 -0
- data/_includes/css/highlighter/vs.css +38 -0
- data/_includes/css/settings.css +30 -13
- data/_includes/css/styles-extended.css +10 -13
- data/_includes/css/styles.css +4 -0
- data/_includes/css/theme/nord.css +1 -1
- data/_includes/header.html +5 -1
- data/_includes/styles.html +2 -3
- data/_layouts/default.html +8 -1
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +7 -5
- metadata +18 -3
| @@ -0,0 +1,69 @@ | |
| 1 | 
            +
            .highlight .hll { background-color: #ffffcc }
         | 
| 2 | 
            +
            .highlight  { background: #ffffff; }
         | 
| 3 | 
            +
            .highlight .c { color: #666666; font-style: italic } /* Comment */
         | 
| 4 | 
            +
            .highlight .err { color: #FF0000; background-color: #FFAAAA } /* Error */
         | 
| 5 | 
            +
            .highlight .k { color: #228899; font-weight: bold } /* Keyword */
         | 
| 6 | 
            +
            .highlight .o { color: #333333 } /* Operator */
         | 
| 7 | 
            +
            .highlight .ch { color: #666666; font-style: italic } /* Comment.Hashbang */
         | 
| 8 | 
            +
            .highlight .cm { color: #666666; font-style: italic } /* Comment.Multiline */
         | 
| 9 | 
            +
            .highlight .cp { color: #557799 } /* Comment.Preproc */
         | 
| 10 | 
            +
            .highlight .cpf { color: #666666; font-style: italic } /* Comment.PreprocFile */
         | 
| 11 | 
            +
            .highlight .c1 { color: #666666; font-style: italic } /* Comment.Single */
         | 
| 12 | 
            +
            .highlight .cs { color: #cc0000; font-weight: bold; font-style: italic } /* Comment.Special */
         | 
| 13 | 
            +
            .highlight .gd { color: #A00000 } /* Generic.Deleted */
         | 
| 14 | 
            +
            .highlight .ge { font-style: italic } /* Generic.Emph */
         | 
| 15 | 
            +
            .highlight .gr { color: #FF0000 } /* Generic.Error */
         | 
| 16 | 
            +
            .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
         | 
| 17 | 
            +
            .highlight .gi { color: #00A000 } /* Generic.Inserted */
         | 
| 18 | 
            +
            .highlight .go { color: #888888 } /* Generic.Output */
         | 
| 19 | 
            +
            .highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
         | 
| 20 | 
            +
            .highlight .gs { font-weight: bold } /* Generic.Strong */
         | 
| 21 | 
            +
            .highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
         | 
| 22 | 
            +
            .highlight .gt { color: #0044DD } /* Generic.Traceback */
         | 
| 23 | 
            +
            .highlight .kc { color: #228899; font-weight: bold } /* Keyword.Constant */
         | 
| 24 | 
            +
            .highlight .kd { color: #228899; font-weight: bold } /* Keyword.Declaration */
         | 
| 25 | 
            +
            .highlight .kn { color: #228899; font-weight: bold } /* Keyword.Namespace */
         | 
| 26 | 
            +
            .highlight .kp { color: #0088ff; font-weight: bold } /* Keyword.Pseudo */
         | 
| 27 | 
            +
            .highlight .kr { color: #228899; font-weight: bold } /* Keyword.Reserved */
         | 
| 28 | 
            +
            .highlight .kt { color: #6666ff; font-weight: bold } /* Keyword.Type */
         | 
| 29 | 
            +
            .highlight .m { color: #6600EE; font-weight: bold } /* Literal.Number */
         | 
| 30 | 
            +
            .highlight .s { background-color: #e0e0ff } /* Literal.String */
         | 
| 31 | 
            +
            .highlight .na { color: #000077 } /* Name.Attribute */
         | 
| 32 | 
            +
            .highlight .nb { color: #007722 } /* Name.Builtin */
         | 
| 33 | 
            +
            .highlight .nc { color: #ee99ee; font-weight: bold } /* Name.Class */
         | 
| 34 | 
            +
            .highlight .no { color: #55eedd; font-weight: bold } /* Name.Constant */
         | 
| 35 | 
            +
            .highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */
         | 
| 36 | 
            +
            .highlight .ni { color: #880000 } /* Name.Entity */
         | 
| 37 | 
            +
            .highlight .ne { color: #FF0000; font-weight: bold } /* Name.Exception */
         | 
| 38 | 
            +
            .highlight .nf { color: #55eedd; font-weight: bold } /* Name.Function */
         | 
| 39 | 
            +
            .highlight .nl { color: #997700; font-weight: bold } /* Name.Label */
         | 
| 40 | 
            +
            .highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
         | 
| 41 | 
            +
            .highlight .nt { color: #007700 } /* Name.Tag */
         | 
| 42 | 
            +
            .highlight .nv { color: #003366 } /* Name.Variable */
         | 
| 43 | 
            +
            .highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
         | 
| 44 | 
            +
            .highlight .w { color: #bbbbbb } /* Text.Whitespace */
         | 
| 45 | 
            +
            .highlight .mb { color: #6600EE; font-weight: bold } /* Literal.Number.Bin */
         | 
| 46 | 
            +
            .highlight .mf { color: #6600EE; font-weight: bold } /* Literal.Number.Float */
         | 
| 47 | 
            +
            .highlight .mh { color: #005588; font-weight: bold } /* Literal.Number.Hex */
         | 
| 48 | 
            +
            .highlight .mi { color: #6666ff; font-weight: bold } /* Literal.Number.Integer */
         | 
| 49 | 
            +
            .highlight .mo { color: #4400EE; font-weight: bold } /* Literal.Number.Oct */
         | 
| 50 | 
            +
            .highlight .sa { background-color: #e0e0ff } /* Literal.String.Affix */
         | 
| 51 | 
            +
            .highlight .sb { background-color: #e0e0ff } /* Literal.String.Backtick */
         | 
| 52 | 
            +
            .highlight .sc { color: #8888FF } /* Literal.String.Char */
         | 
| 53 | 
            +
            .highlight .dl { background-color: #e0e0ff } /* Literal.String.Delimiter */
         | 
| 54 | 
            +
            .highlight .sd { color: #DD4422 } /* Literal.String.Doc */
         | 
| 55 | 
            +
            .highlight .s2 { background-color: #e0e0ff } /* Literal.String.Double */
         | 
| 56 | 
            +
            .highlight .se { color: #666666; font-weight: bold; background-color: #e0e0ff } /* Literal.String.Escape */
         | 
| 57 | 
            +
            .highlight .sh { background-color: #e0e0ff } /* Literal.String.Heredoc */
         | 
| 58 | 
            +
            .highlight .si { background-color: #eeeeee } /* Literal.String.Interpol */
         | 
| 59 | 
            +
            .highlight .sx { color: #ff8888; background-color: #e0e0ff } /* Literal.String.Other */
         | 
| 60 | 
            +
            .highlight .sr { color: #000000; background-color: #e0e0ff } /* Literal.String.Regex */
         | 
| 61 | 
            +
            .highlight .s1 { background-color: #e0e0ff } /* Literal.String.Single */
         | 
| 62 | 
            +
            .highlight .ss { color: #ffcc88 } /* Literal.String.Symbol */
         | 
| 63 | 
            +
            .highlight .bp { color: #007722 } /* Name.Builtin.Pseudo */
         | 
| 64 | 
            +
            .highlight .fm { color: #55eedd; font-weight: bold } /* Name.Function.Magic */
         | 
| 65 | 
            +
            .highlight .vc { color: #ccccff } /* Name.Variable.Class */
         | 
| 66 | 
            +
            .highlight .vg { color: #ff8844 } /* Name.Variable.Global */
         | 
| 67 | 
            +
            .highlight .vi { color: #aaaaff } /* Name.Variable.Instance */
         | 
| 68 | 
            +
            .highlight .vm { color: #003366 } /* Name.Variable.Magic */
         | 
| 69 | 
            +
            .highlight .il { color: #6666ff; font-weight: bold } /* Literal.Number.Integer.Long */
         | 
| @@ -0,0 +1,78 @@ | |
| 1 | 
            +
            .highlight .hll { background-color: #404040 }
         | 
| 2 | 
            +
            .highlight  { background: #202020; color: #d0d0d0 }
         | 
| 3 | 
            +
            .highlight .c { color: #999999; font-style: italic } /* Comment */
         | 
| 4 | 
            +
            .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
         | 
| 5 | 
            +
            .highlight .esc { color: #d0d0d0 } /* Escape */
         | 
| 6 | 
            +
            .highlight .g { color: #d0d0d0 } /* Generic */
         | 
| 7 | 
            +
            .highlight .k { color: #6ab825; font-weight: bold } /* Keyword */
         | 
| 8 | 
            +
            .highlight .l { color: #d0d0d0 } /* Literal */
         | 
| 9 | 
            +
            .highlight .n { color: #d0d0d0 } /* Name */
         | 
| 10 | 
            +
            .highlight .o { color: #d0d0d0 } /* Operator */
         | 
| 11 | 
            +
            .highlight .x { color: #d0d0d0 } /* Other */
         | 
| 12 | 
            +
            .highlight .p { color: #d0d0d0 } /* Punctuation */
         | 
| 13 | 
            +
            .highlight .ch { color: #999999; font-style: italic } /* Comment.Hashbang */
         | 
| 14 | 
            +
            .highlight .cm { color: #999999; font-style: italic } /* Comment.Multiline */
         | 
| 15 | 
            +
            .highlight .cp { color: #cd2828; font-weight: bold } /* Comment.Preproc */
         | 
| 16 | 
            +
            .highlight .cpf { color: #999999; font-style: italic } /* Comment.PreprocFile */
         | 
| 17 | 
            +
            .highlight .c1 { color: #999999; font-style: italic } /* Comment.Single */
         | 
| 18 | 
            +
            .highlight .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */
         | 
| 19 | 
            +
            .highlight .gd { color: #d22323 } /* Generic.Deleted */
         | 
| 20 | 
            +
            .highlight .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */
         | 
| 21 | 
            +
            .highlight .gr { color: #d22323 } /* Generic.Error */
         | 
| 22 | 
            +
            .highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
         | 
| 23 | 
            +
            .highlight .gi { color: #589819 } /* Generic.Inserted */
         | 
| 24 | 
            +
            .highlight .go { color: #cccccc } /* Generic.Output */
         | 
| 25 | 
            +
            .highlight .gp { color: #aaaaaa } /* Generic.Prompt */
         | 
| 26 | 
            +
            .highlight .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */
         | 
| 27 | 
            +
            .highlight .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */
         | 
| 28 | 
            +
            .highlight .gt { color: #d22323 } /* Generic.Traceback */
         | 
| 29 | 
            +
            .highlight .kc { color: #6ab825; font-weight: bold } /* Keyword.Constant */
         | 
| 30 | 
            +
            .highlight .kd { color: #6ab825; font-weight: bold } /* Keyword.Declaration */
         | 
| 31 | 
            +
            .highlight .kn { color: #6ab825; font-weight: bold } /* Keyword.Namespace */
         | 
| 32 | 
            +
            .highlight .kp { color: #6ab825 } /* Keyword.Pseudo */
         | 
| 33 | 
            +
            .highlight .kr { color: #6ab825; font-weight: bold } /* Keyword.Reserved */
         | 
| 34 | 
            +
            .highlight .kt { color: #6ab825; font-weight: bold } /* Keyword.Type */
         | 
| 35 | 
            +
            .highlight .ld { color: #d0d0d0 } /* Literal.Date */
         | 
| 36 | 
            +
            .highlight .m { color: #3677a9 } /* Literal.Number */
         | 
| 37 | 
            +
            .highlight .s { color: #ed9d13 } /* Literal.String */
         | 
| 38 | 
            +
            .highlight .na { color: #bbbbbb } /* Name.Attribute */
         | 
| 39 | 
            +
            .highlight .nb { color: #24909d } /* Name.Builtin */
         | 
| 40 | 
            +
            .highlight .nc { color: #447fcf; text-decoration: underline } /* Name.Class */
         | 
| 41 | 
            +
            .highlight .no { color: #40ffff } /* Name.Constant */
         | 
| 42 | 
            +
            .highlight .nd { color: #ffa500 } /* Name.Decorator */
         | 
| 43 | 
            +
            .highlight .ni { color: #d0d0d0 } /* Name.Entity */
         | 
| 44 | 
            +
            .highlight .ne { color: #bbbbbb } /* Name.Exception */
         | 
| 45 | 
            +
            .highlight .nf { color: #447fcf } /* Name.Function */
         | 
| 46 | 
            +
            .highlight .nl { color: #d0d0d0 } /* Name.Label */
         | 
| 47 | 
            +
            .highlight .nn { color: #447fcf; text-decoration: underline } /* Name.Namespace */
         | 
| 48 | 
            +
            .highlight .nx { color: #d0d0d0 } /* Name.Other */
         | 
| 49 | 
            +
            .highlight .py { color: #d0d0d0 } /* Name.Property */
         | 
| 50 | 
            +
            .highlight .nt { color: #6ab825; font-weight: bold } /* Name.Tag */
         | 
| 51 | 
            +
            .highlight .nv { color: #40ffff } /* Name.Variable */
         | 
| 52 | 
            +
            .highlight .ow { color: #6ab825; font-weight: bold } /* Operator.Word */
         | 
| 53 | 
            +
            .highlight .w { color: #666666 } /* Text.Whitespace */
         | 
| 54 | 
            +
            .highlight .mb { color: #3677a9 } /* Literal.Number.Bin */
         | 
| 55 | 
            +
            .highlight .mf { color: #3677a9 } /* Literal.Number.Float */
         | 
| 56 | 
            +
            .highlight .mh { color: #3677a9 } /* Literal.Number.Hex */
         | 
| 57 | 
            +
            .highlight .mi { color: #3677a9 } /* Literal.Number.Integer */
         | 
| 58 | 
            +
            .highlight .mo { color: #3677a9 } /* Literal.Number.Oct */
         | 
| 59 | 
            +
            .highlight .sa { color: #ed9d13 } /* Literal.String.Affix */
         | 
| 60 | 
            +
            .highlight .sb { color: #ed9d13 } /* Literal.String.Backtick */
         | 
| 61 | 
            +
            .highlight .sc { color: #ed9d13 } /* Literal.String.Char */
         | 
| 62 | 
            +
            .highlight .dl { color: #ed9d13 } /* Literal.String.Delimiter */
         | 
| 63 | 
            +
            .highlight .sd { color: #ed9d13 } /* Literal.String.Doc */
         | 
| 64 | 
            +
            .highlight .s2 { color: #ed9d13 } /* Literal.String.Double */
         | 
| 65 | 
            +
            .highlight .se { color: #ed9d13 } /* Literal.String.Escape */
         | 
| 66 | 
            +
            .highlight .sh { color: #ed9d13 } /* Literal.String.Heredoc */
         | 
| 67 | 
            +
            .highlight .si { color: #ed9d13 } /* Literal.String.Interpol */
         | 
| 68 | 
            +
            .highlight .sx { color: #ffa500 } /* Literal.String.Other */
         | 
| 69 | 
            +
            .highlight .sr { color: #ed9d13 } /* Literal.String.Regex */
         | 
| 70 | 
            +
            .highlight .s1 { color: #ed9d13 } /* Literal.String.Single */
         | 
| 71 | 
            +
            .highlight .ss { color: #ed9d13 } /* Literal.String.Symbol */
         | 
| 72 | 
            +
            .highlight .bp { color: #24909d } /* Name.Builtin.Pseudo */
         | 
| 73 | 
            +
            .highlight .fm { color: #447fcf } /* Name.Function.Magic */
         | 
| 74 | 
            +
            .highlight .vc { color: #40ffff } /* Name.Variable.Class */
         | 
| 75 | 
            +
            .highlight .vg { color: #40ffff } /* Name.Variable.Global */
         | 
| 76 | 
            +
            .highlight .vi { color: #40ffff } /* Name.Variable.Instance */
         | 
| 77 | 
            +
            .highlight .vm { color: #40ffff } /* Name.Variable.Magic */
         | 
| 78 | 
            +
            .highlight .il { color: #3677a9 } /* Literal.Number.Integer.Long */
         | 
| @@ -0,0 +1,68 @@ | |
| 1 | 
            +
            .highlight .hll { background-color: #ffffcc }
         | 
| 2 | 
            +
            .highlight  { background: #ffffff; }
         | 
| 3 | 
            +
            .highlight .c { color: #888888 } /* Comment */
         | 
| 4 | 
            +
            .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
         | 
| 5 | 
            +
            .highlight .k { color: #008800; font-weight: bold } /* Keyword */
         | 
| 6 | 
            +
            .highlight .ch { color: #888888 } /* Comment.Hashbang */
         | 
| 7 | 
            +
            .highlight .cm { color: #888888 } /* Comment.Multiline */
         | 
| 8 | 
            +
            .highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
         | 
| 9 | 
            +
            .highlight .cpf { color: #888888 } /* Comment.PreprocFile */
         | 
| 10 | 
            +
            .highlight .c1 { color: #888888 } /* Comment.Single */
         | 
| 11 | 
            +
            .highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
         | 
| 12 | 
            +
            .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
         | 
| 13 | 
            +
            .highlight .ge { font-style: italic } /* Generic.Emph */
         | 
| 14 | 
            +
            .highlight .gr { color: #aa0000 } /* Generic.Error */
         | 
| 15 | 
            +
            .highlight .gh { color: #333333 } /* Generic.Heading */
         | 
| 16 | 
            +
            .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
         | 
| 17 | 
            +
            .highlight .go { color: #888888 } /* Generic.Output */
         | 
| 18 | 
            +
            .highlight .gp { color: #555555 } /* Generic.Prompt */
         | 
| 19 | 
            +
            .highlight .gs { font-weight: bold } /* Generic.Strong */
         | 
| 20 | 
            +
            .highlight .gu { color: #666666 } /* Generic.Subheading */
         | 
| 21 | 
            +
            .highlight .gt { color: #aa0000 } /* Generic.Traceback */
         | 
| 22 | 
            +
            .highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
         | 
| 23 | 
            +
            .highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
         | 
| 24 | 
            +
            .highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
         | 
| 25 | 
            +
            .highlight .kp { color: #008800 } /* Keyword.Pseudo */
         | 
| 26 | 
            +
            .highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
         | 
| 27 | 
            +
            .highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */
         | 
| 28 | 
            +
            .highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */
         | 
| 29 | 
            +
            .highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
         | 
| 30 | 
            +
            .highlight .na { color: #336699 } /* Name.Attribute */
         | 
| 31 | 
            +
            .highlight .nb { color: #003388 } /* Name.Builtin */
         | 
| 32 | 
            +
            .highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */
         | 
| 33 | 
            +
            .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */
         | 
| 34 | 
            +
            .highlight .nd { color: #555555 } /* Name.Decorator */
         | 
| 35 | 
            +
            .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
         | 
| 36 | 
            +
            .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */
         | 
| 37 | 
            +
            .highlight .nl { color: #336699; font-style: italic } /* Name.Label */
         | 
| 38 | 
            +
            .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
         | 
| 39 | 
            +
            .highlight .py { color: #336699; font-weight: bold } /* Name.Property */
         | 
| 40 | 
            +
            .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
         | 
| 41 | 
            +
            .highlight .nv { color: #336699 } /* Name.Variable */
         | 
| 42 | 
            +
            .highlight .ow { color: #008800 } /* Operator.Word */
         | 
| 43 | 
            +
            .highlight .w { color: #bbbbbb } /* Text.Whitespace */
         | 
| 44 | 
            +
            .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */
         | 
| 45 | 
            +
            .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
         | 
| 46 | 
            +
            .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
         | 
| 47 | 
            +
            .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
         | 
| 48 | 
            +
            .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
         | 
| 49 | 
            +
            .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */
         | 
| 50 | 
            +
            .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
         | 
| 51 | 
            +
            .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
         | 
| 52 | 
            +
            .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */
         | 
| 53 | 
            +
            .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */
         | 
| 54 | 
            +
            .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */
         | 
| 55 | 
            +
            .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */
         | 
| 56 | 
            +
            .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */
         | 
| 57 | 
            +
            .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */
         | 
| 58 | 
            +
            .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */
         | 
| 59 | 
            +
            .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */
         | 
| 60 | 
            +
            .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
         | 
| 61 | 
            +
            .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */
         | 
| 62 | 
            +
            .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */
         | 
| 63 | 
            +
            .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */
         | 
| 64 | 
            +
            .highlight .vc { color: #336699 } /* Name.Variable.Class */
         | 
| 65 | 
            +
            .highlight .vg { color: #dd7700 } /* Name.Variable.Global */
         | 
| 66 | 
            +
            .highlight .vi { color: #3333bb } /* Name.Variable.Instance */
         | 
| 67 | 
            +
            .highlight .vm { color: #336699 } /* Name.Variable.Magic */
         | 
| 68 | 
            +
            .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
         | 
| @@ -0,0 +1,77 @@ | |
| 1 | 
            +
            .highlight .hll { background-color: #ffffcc }
         | 
| 2 | 
            +
            .highlight  { background: #f8f8f8; }
         | 
| 3 | 
            +
            .highlight .c { color: #8f5902; font-style: italic } /* Comment */
         | 
| 4 | 
            +
            .highlight .err { color: #a40000; border: 1px solid #ef2929 } /* Error */
         | 
| 5 | 
            +
            .highlight .g { color: #000000 } /* Generic */
         | 
| 6 | 
            +
            .highlight .k { color: #204a87; font-weight: bold } /* Keyword */
         | 
| 7 | 
            +
            .highlight .l { color: #000000 } /* Literal */
         | 
| 8 | 
            +
            .highlight .n { color: #000000 } /* Name */
         | 
| 9 | 
            +
            .highlight .o { color: #ce5c00; font-weight: bold } /* Operator */
         | 
| 10 | 
            +
            .highlight .x { color: #000000 } /* Other */
         | 
| 11 | 
            +
            .highlight .p { color: #000000; font-weight: bold } /* Punctuation */
         | 
| 12 | 
            +
            .highlight .ch { color: #8f5902; font-style: italic } /* Comment.Hashbang */
         | 
| 13 | 
            +
            .highlight .cm { color: #8f5902; font-style: italic } /* Comment.Multiline */
         | 
| 14 | 
            +
            .highlight .cp { color: #8f5902; font-style: italic } /* Comment.Preproc */
         | 
| 15 | 
            +
            .highlight .cpf { color: #8f5902; font-style: italic } /* Comment.PreprocFile */
         | 
| 16 | 
            +
            .highlight .c1 { color: #8f5902; font-style: italic } /* Comment.Single */
         | 
| 17 | 
            +
            .highlight .cs { color: #8f5902; font-style: italic } /* Comment.Special */
         | 
| 18 | 
            +
            .highlight .gd { color: #a40000 } /* Generic.Deleted */
         | 
| 19 | 
            +
            .highlight .ge { color: #000000; font-style: italic } /* Generic.Emph */
         | 
| 20 | 
            +
            .highlight .gr { color: #ef2929 } /* Generic.Error */
         | 
| 21 | 
            +
            .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
         | 
| 22 | 
            +
            .highlight .gi { color: #00A000 } /* Generic.Inserted */
         | 
| 23 | 
            +
            .highlight .go { color: #000000; font-style: italic } /* Generic.Output */
         | 
| 24 | 
            +
            .highlight .gp { color: #8f5902 } /* Generic.Prompt */
         | 
| 25 | 
            +
            .highlight .gs { color: #000000; font-weight: bold } /* Generic.Strong */
         | 
| 26 | 
            +
            .highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
         | 
| 27 | 
            +
            .highlight .gt { color: #a40000; font-weight: bold } /* Generic.Traceback */
         | 
| 28 | 
            +
            .highlight .kc { color: #204a87; font-weight: bold } /* Keyword.Constant */
         | 
| 29 | 
            +
            .highlight .kd { color: #204a87; font-weight: bold } /* Keyword.Declaration */
         | 
| 30 | 
            +
            .highlight .kn { color: #204a87; font-weight: bold } /* Keyword.Namespace */
         | 
| 31 | 
            +
            .highlight .kp { color: #204a87; font-weight: bold } /* Keyword.Pseudo */
         | 
| 32 | 
            +
            .highlight .kr { color: #204a87; font-weight: bold } /* Keyword.Reserved */
         | 
| 33 | 
            +
            .highlight .kt { color: #204a87; font-weight: bold } /* Keyword.Type */
         | 
| 34 | 
            +
            .highlight .ld { color: #000000 } /* Literal.Date */
         | 
| 35 | 
            +
            .highlight .m { color: #0000cf; font-weight: bold } /* Literal.Number */
         | 
| 36 | 
            +
            .highlight .s { color: #4e9a06 } /* Literal.String */
         | 
| 37 | 
            +
            .highlight .na { color: #c4a000 } /* Name.Attribute */
         | 
| 38 | 
            +
            .highlight .nb { color: #204a87 } /* Name.Builtin */
         | 
| 39 | 
            +
            .highlight .nc { color: #000000 } /* Name.Class */
         | 
| 40 | 
            +
            .highlight .no { color: #000000 } /* Name.Constant */
         | 
| 41 | 
            +
            .highlight .nd { color: #5c35cc; font-weight: bold } /* Name.Decorator */
         | 
| 42 | 
            +
            .highlight .ni { color: #ce5c00 } /* Name.Entity */
         | 
| 43 | 
            +
            .highlight .ne { color: #cc0000; font-weight: bold } /* Name.Exception */
         | 
| 44 | 
            +
            .highlight .nf { color: #000000 } /* Name.Function */
         | 
| 45 | 
            +
            .highlight .nl { color: #f57900 } /* Name.Label */
         | 
| 46 | 
            +
            .highlight .nn { color: #000000 } /* Name.Namespace */
         | 
| 47 | 
            +
            .highlight .nx { color: #000000 } /* Name.Other */
         | 
| 48 | 
            +
            .highlight .py { color: #000000 } /* Name.Property */
         | 
| 49 | 
            +
            .highlight .nt { color: #204a87; font-weight: bold } /* Name.Tag */
         | 
| 50 | 
            +
            .highlight .nv { color: #000000 } /* Name.Variable */
         | 
| 51 | 
            +
            .highlight .ow { color: #204a87; font-weight: bold } /* Operator.Word */
         | 
| 52 | 
            +
            .highlight .w { color: #f8f8f8; text-decoration: underline } /* Text.Whitespace */
         | 
| 53 | 
            +
            .highlight .mb { color: #0000cf; font-weight: bold } /* Literal.Number.Bin */
         | 
| 54 | 
            +
            .highlight .mf { color: #0000cf; font-weight: bold } /* Literal.Number.Float */
         | 
| 55 | 
            +
            .highlight .mh { color: #0000cf; font-weight: bold } /* Literal.Number.Hex */
         | 
| 56 | 
            +
            .highlight .mi { color: #0000cf; font-weight: bold } /* Literal.Number.Integer */
         | 
| 57 | 
            +
            .highlight .mo { color: #0000cf; font-weight: bold } /* Literal.Number.Oct */
         | 
| 58 | 
            +
            .highlight .sa { color: #4e9a06 } /* Literal.String.Affix */
         | 
| 59 | 
            +
            .highlight .sb { color: #4e9a06 } /* Literal.String.Backtick */
         | 
| 60 | 
            +
            .highlight .sc { color: #4e9a06 } /* Literal.String.Char */
         | 
| 61 | 
            +
            .highlight .dl { color: #4e9a06 } /* Literal.String.Delimiter */
         | 
| 62 | 
            +
            .highlight .sd { color: #8f5902; font-style: italic } /* Literal.String.Doc */
         | 
| 63 | 
            +
            .highlight .s2 { color: #4e9a06 } /* Literal.String.Double */
         | 
| 64 | 
            +
            .highlight .se { color: #4e9a06 } /* Literal.String.Escape */
         | 
| 65 | 
            +
            .highlight .sh { color: #4e9a06 } /* Literal.String.Heredoc */
         | 
| 66 | 
            +
            .highlight .si { color: #4e9a06 } /* Literal.String.Interpol */
         | 
| 67 | 
            +
            .highlight .sx { color: #4e9a06 } /* Literal.String.Other */
         | 
| 68 | 
            +
            .highlight .sr { color: #4e9a06 } /* Literal.String.Regex */
         | 
| 69 | 
            +
            .highlight .s1 { color: #4e9a06 } /* Literal.String.Single */
         | 
| 70 | 
            +
            .highlight .ss { color: #4e9a06 } /* Literal.String.Symbol */
         | 
| 71 | 
            +
            .highlight .bp { color: #3465a4 } /* Name.Builtin.Pseudo */
         | 
| 72 | 
            +
            .highlight .fm { color: #000000 } /* Name.Function.Magic */
         | 
| 73 | 
            +
            .highlight .vc { color: #000000 } /* Name.Variable.Class */
         | 
| 74 | 
            +
            .highlight .vg { color: #000000 } /* Name.Variable.Global */
         | 
| 75 | 
            +
            .highlight .vi { color: #000000 } /* Name.Variable.Instance */
         | 
| 76 | 
            +
            .highlight .vm { color: #000000 } /* Name.Variable.Magic */
         | 
| 77 | 
            +
            .highlight .il { color: #0000cf; font-weight: bold } /* Literal.Number.Integer.Long */
         | 
| @@ -0,0 +1,67 @@ | |
| 1 | 
            +
            .highlight .hll { background-color: #ffffcc }
         | 
| 2 | 
            +
            .highlight  { background: #ffffff; }
         | 
| 3 | 
            +
            .highlight .c { color: #999988; font-style: italic } /* Comment */
         | 
| 4 | 
            +
            .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
         | 
| 5 | 
            +
            .highlight .k { font-weight: bold } /* Keyword */
         | 
| 6 | 
            +
            .highlight .o { font-weight: bold } /* Operator */
         | 
| 7 | 
            +
            .highlight .ch { color: #999988; font-style: italic } /* Comment.Hashbang */
         | 
| 8 | 
            +
            .highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
         | 
| 9 | 
            +
            .highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
         | 
| 10 | 
            +
            .highlight .cpf { color: #999988; font-style: italic } /* Comment.PreprocFile */
         | 
| 11 | 
            +
            .highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
         | 
| 12 | 
            +
            .highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
         | 
| 13 | 
            +
            .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
         | 
| 14 | 
            +
            .highlight .ge { font-style: italic } /* Generic.Emph */
         | 
| 15 | 
            +
            .highlight .gr { color: #aa0000 } /* Generic.Error */
         | 
| 16 | 
            +
            .highlight .gh { color: #999999 } /* Generic.Heading */
         | 
| 17 | 
            +
            .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
         | 
| 18 | 
            +
            .highlight .go { color: #888888 } /* Generic.Output */
         | 
| 19 | 
            +
            .highlight .gp { color: #555555 } /* Generic.Prompt */
         | 
| 20 | 
            +
            .highlight .gs { font-weight: bold } /* Generic.Strong */
         | 
| 21 | 
            +
            .highlight .gu { color: #aaaaaa } /* Generic.Subheading */
         | 
| 22 | 
            +
            .highlight .gt { color: #aa0000 } /* Generic.Traceback */
         | 
| 23 | 
            +
            .highlight .kc { font-weight: bold } /* Keyword.Constant */
         | 
| 24 | 
            +
            .highlight .kd { font-weight: bold } /* Keyword.Declaration */
         | 
| 25 | 
            +
            .highlight .kn { font-weight: bold } /* Keyword.Namespace */
         | 
| 26 | 
            +
            .highlight .kp { font-weight: bold } /* Keyword.Pseudo */
         | 
| 27 | 
            +
            .highlight .kr { font-weight: bold } /* Keyword.Reserved */
         | 
| 28 | 
            +
            .highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
         | 
| 29 | 
            +
            .highlight .m { color: #009999 } /* Literal.Number */
         | 
| 30 | 
            +
            .highlight .s { color: #bb8844 } /* Literal.String */
         | 
| 31 | 
            +
            .highlight .na { color: #008080 } /* Name.Attribute */
         | 
| 32 | 
            +
            .highlight .nb { color: #999999 } /* Name.Builtin */
         | 
| 33 | 
            +
            .highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
         | 
| 34 | 
            +
            .highlight .no { color: #008080 } /* Name.Constant */
         | 
| 35 | 
            +
            .highlight .ni { color: #800080 } /* Name.Entity */
         | 
| 36 | 
            +
            .highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
         | 
| 37 | 
            +
            .highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
         | 
| 38 | 
            +
            .highlight .nn { color: #555555 } /* Name.Namespace */
         | 
| 39 | 
            +
            .highlight .nt { color: #000080 } /* Name.Tag */
         | 
| 40 | 
            +
            .highlight .nv { color: #008080 } /* Name.Variable */
         | 
| 41 | 
            +
            .highlight .ow { font-weight: bold } /* Operator.Word */
         | 
| 42 | 
            +
            .highlight .w { color: #bbbbbb } /* Text.Whitespace */
         | 
| 43 | 
            +
            .highlight .mb { color: #009999 } /* Literal.Number.Bin */
         | 
| 44 | 
            +
            .highlight .mf { color: #009999 } /* Literal.Number.Float */
         | 
| 45 | 
            +
            .highlight .mh { color: #009999 } /* Literal.Number.Hex */
         | 
| 46 | 
            +
            .highlight .mi { color: #009999 } /* Literal.Number.Integer */
         | 
| 47 | 
            +
            .highlight .mo { color: #009999 } /* Literal.Number.Oct */
         | 
| 48 | 
            +
            .highlight .sa { color: #bb8844 } /* Literal.String.Affix */
         | 
| 49 | 
            +
            .highlight .sb { color: #bb8844 } /* Literal.String.Backtick */
         | 
| 50 | 
            +
            .highlight .sc { color: #bb8844 } /* Literal.String.Char */
         | 
| 51 | 
            +
            .highlight .dl { color: #bb8844 } /* Literal.String.Delimiter */
         | 
| 52 | 
            +
            .highlight .sd { color: #bb8844 } /* Literal.String.Doc */
         | 
| 53 | 
            +
            .highlight .s2 { color: #bb8844 } /* Literal.String.Double */
         | 
| 54 | 
            +
            .highlight .se { color: #bb8844 } /* Literal.String.Escape */
         | 
| 55 | 
            +
            .highlight .sh { color: #bb8844 } /* Literal.String.Heredoc */
         | 
| 56 | 
            +
            .highlight .si { color: #bb8844 } /* Literal.String.Interpol */
         | 
| 57 | 
            +
            .highlight .sx { color: #bb8844 } /* Literal.String.Other */
         | 
| 58 | 
            +
            .highlight .sr { color: #808000 } /* Literal.String.Regex */
         | 
| 59 | 
            +
            .highlight .s1 { color: #bb8844 } /* Literal.String.Single */
         | 
| 60 | 
            +
            .highlight .ss { color: #bb8844 } /* Literal.String.Symbol */
         | 
| 61 | 
            +
            .highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
         | 
| 62 | 
            +
            .highlight .fm { color: #990000; font-weight: bold } /* Name.Function.Magic */
         | 
| 63 | 
            +
            .highlight .vc { color: #008080 } /* Name.Variable.Class */
         | 
| 64 | 
            +
            .highlight .vg { color: #008080 } /* Name.Variable.Global */
         | 
| 65 | 
            +
            .highlight .vi { color: #008080 } /* Name.Variable.Instance */
         | 
| 66 | 
            +
            .highlight .vm { color: #008080 } /* Name.Variable.Magic */
         | 
| 67 | 
            +
            .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
         | 
| @@ -0,0 +1,78 @@ | |
| 1 | 
            +
            .highlight .hll { background-color: #222222 }
         | 
| 2 | 
            +
            .highlight  { background: #000000; color: #cccccc }
         | 
| 3 | 
            +
            .highlight .c { color: #000080 } /* Comment */
         | 
| 4 | 
            +
            .highlight .err { color: #cccccc; border: 1px solid #FF0000 } /* Error */
         | 
| 5 | 
            +
            .highlight .esc { color: #cccccc } /* Escape */
         | 
| 6 | 
            +
            .highlight .g { color: #cccccc } /* Generic */
         | 
| 7 | 
            +
            .highlight .k { color: #cdcd00 } /* Keyword */
         | 
| 8 | 
            +
            .highlight .l { color: #cccccc } /* Literal */
         | 
| 9 | 
            +
            .highlight .n { color: #cccccc } /* Name */
         | 
| 10 | 
            +
            .highlight .o { color: #3399cc } /* Operator */
         | 
| 11 | 
            +
            .highlight .x { color: #cccccc } /* Other */
         | 
| 12 | 
            +
            .highlight .p { color: #cccccc } /* Punctuation */
         | 
| 13 | 
            +
            .highlight .ch { color: #000080 } /* Comment.Hashbang */
         | 
| 14 | 
            +
            .highlight .cm { color: #000080 } /* Comment.Multiline */
         | 
| 15 | 
            +
            .highlight .cp { color: #000080 } /* Comment.Preproc */
         | 
| 16 | 
            +
            .highlight .cpf { color: #000080 } /* Comment.PreprocFile */
         | 
| 17 | 
            +
            .highlight .c1 { color: #000080 } /* Comment.Single */
         | 
| 18 | 
            +
            .highlight .cs { color: #cd0000; font-weight: bold } /* Comment.Special */
         | 
| 19 | 
            +
            .highlight .gd { color: #cd0000 } /* Generic.Deleted */
         | 
| 20 | 
            +
            .highlight .ge { color: #cccccc; font-style: italic } /* Generic.Emph */
         | 
| 21 | 
            +
            .highlight .gr { color: #FF0000 } /* Generic.Error */
         | 
| 22 | 
            +
            .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
         | 
| 23 | 
            +
            .highlight .gi { color: #00cd00 } /* Generic.Inserted */
         | 
| 24 | 
            +
            .highlight .go { color: #888888 } /* Generic.Output */
         | 
| 25 | 
            +
            .highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
         | 
| 26 | 
            +
            .highlight .gs { color: #cccccc; font-weight: bold } /* Generic.Strong */
         | 
| 27 | 
            +
            .highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
         | 
| 28 | 
            +
            .highlight .gt { color: #0044DD } /* Generic.Traceback */
         | 
| 29 | 
            +
            .highlight .kc { color: #cdcd00 } /* Keyword.Constant */
         | 
| 30 | 
            +
            .highlight .kd { color: #00cd00 } /* Keyword.Declaration */
         | 
| 31 | 
            +
            .highlight .kn { color: #cd00cd } /* Keyword.Namespace */
         | 
| 32 | 
            +
            .highlight .kp { color: #cdcd00 } /* Keyword.Pseudo */
         | 
| 33 | 
            +
            .highlight .kr { color: #cdcd00 } /* Keyword.Reserved */
         | 
| 34 | 
            +
            .highlight .kt { color: #00cd00 } /* Keyword.Type */
         | 
| 35 | 
            +
            .highlight .ld { color: #cccccc } /* Literal.Date */
         | 
| 36 | 
            +
            .highlight .m { color: #cd00cd } /* Literal.Number */
         | 
| 37 | 
            +
            .highlight .s { color: #cd0000 } /* Literal.String */
         | 
| 38 | 
            +
            .highlight .na { color: #cccccc } /* Name.Attribute */
         | 
| 39 | 
            +
            .highlight .nb { color: #cd00cd } /* Name.Builtin */
         | 
| 40 | 
            +
            .highlight .nc { color: #00cdcd } /* Name.Class */
         | 
| 41 | 
            +
            .highlight .no { color: #cccccc } /* Name.Constant */
         | 
| 42 | 
            +
            .highlight .nd { color: #cccccc } /* Name.Decorator */
         | 
| 43 | 
            +
            .highlight .ni { color: #cccccc } /* Name.Entity */
         | 
| 44 | 
            +
            .highlight .ne { color: #666699; font-weight: bold } /* Name.Exception */
         | 
| 45 | 
            +
            .highlight .nf { color: #cccccc } /* Name.Function */
         | 
| 46 | 
            +
            .highlight .nl { color: #cccccc } /* Name.Label */
         | 
| 47 | 
            +
            .highlight .nn { color: #cccccc } /* Name.Namespace */
         | 
| 48 | 
            +
            .highlight .nx { color: #cccccc } /* Name.Other */
         | 
| 49 | 
            +
            .highlight .py { color: #cccccc } /* Name.Property */
         | 
| 50 | 
            +
            .highlight .nt { color: #cccccc } /* Name.Tag */
         | 
| 51 | 
            +
            .highlight .nv { color: #00cdcd } /* Name.Variable */
         | 
| 52 | 
            +
            .highlight .ow { color: #cdcd00 } /* Operator.Word */
         | 
| 53 | 
            +
            .highlight .w { color: #cccccc } /* Text.Whitespace */
         | 
| 54 | 
            +
            .highlight .mb { color: #cd00cd } /* Literal.Number.Bin */
         | 
| 55 | 
            +
            .highlight .mf { color: #cd00cd } /* Literal.Number.Float */
         | 
| 56 | 
            +
            .highlight .mh { color: #cd00cd } /* Literal.Number.Hex */
         | 
| 57 | 
            +
            .highlight .mi { color: #cd00cd } /* Literal.Number.Integer */
         | 
| 58 | 
            +
            .highlight .mo { color: #cd00cd } /* Literal.Number.Oct */
         | 
| 59 | 
            +
            .highlight .sa { color: #cd0000 } /* Literal.String.Affix */
         | 
| 60 | 
            +
            .highlight .sb { color: #cd0000 } /* Literal.String.Backtick */
         | 
| 61 | 
            +
            .highlight .sc { color: #cd0000 } /* Literal.String.Char */
         | 
| 62 | 
            +
            .highlight .dl { color: #cd0000 } /* Literal.String.Delimiter */
         | 
| 63 | 
            +
            .highlight .sd { color: #cd0000 } /* Literal.String.Doc */
         | 
| 64 | 
            +
            .highlight .s2 { color: #cd0000 } /* Literal.String.Double */
         | 
| 65 | 
            +
            .highlight .se { color: #cd0000 } /* Literal.String.Escape */
         | 
| 66 | 
            +
            .highlight .sh { color: #cd0000 } /* Literal.String.Heredoc */
         | 
| 67 | 
            +
            .highlight .si { color: #cd0000 } /* Literal.String.Interpol */
         | 
| 68 | 
            +
            .highlight .sx { color: #cd0000 } /* Literal.String.Other */
         | 
| 69 | 
            +
            .highlight .sr { color: #cd0000 } /* Literal.String.Regex */
         | 
| 70 | 
            +
            .highlight .s1 { color: #cd0000 } /* Literal.String.Single */
         | 
| 71 | 
            +
            .highlight .ss { color: #cd0000 } /* Literal.String.Symbol */
         | 
| 72 | 
            +
            .highlight .bp { color: #cd00cd } /* Name.Builtin.Pseudo */
         | 
| 73 | 
            +
            .highlight .fm { color: #cccccc } /* Name.Function.Magic */
         | 
| 74 | 
            +
            .highlight .vc { color: #00cdcd } /* Name.Variable.Class */
         | 
| 75 | 
            +
            .highlight .vg { color: #00cdcd } /* Name.Variable.Global */
         | 
| 76 | 
            +
            .highlight .vi { color: #00cdcd } /* Name.Variable.Instance */
         | 
| 77 | 
            +
            .highlight .vm { color: #00cdcd } /* Name.Variable.Magic */
         | 
| 78 | 
            +
            .highlight .il { color: #cd00cd } /* Literal.Number.Integer.Long */
         | 
| @@ -0,0 +1,38 @@ | |
| 1 | 
            +
            .highlight .hll { background-color: #ffffcc }
         | 
| 2 | 
            +
            .highlight  { background: #ffffff; }
         | 
| 3 | 
            +
            .highlight .c { color: #008000 } /* Comment */
         | 
| 4 | 
            +
            .highlight .err { border: 1px solid #FF0000 } /* Error */
         | 
| 5 | 
            +
            .highlight .k { color: #0000ff } /* Keyword */
         | 
| 6 | 
            +
            .highlight .ch { color: #008000 } /* Comment.Hashbang */
         | 
| 7 | 
            +
            .highlight .cm { color: #008000 } /* Comment.Multiline */
         | 
| 8 | 
            +
            .highlight .cp { color: #0000ff } /* Comment.Preproc */
         | 
| 9 | 
            +
            .highlight .cpf { color: #008000 } /* Comment.PreprocFile */
         | 
| 10 | 
            +
            .highlight .c1 { color: #008000 } /* Comment.Single */
         | 
| 11 | 
            +
            .highlight .cs { color: #008000 } /* Comment.Special */
         | 
| 12 | 
            +
            .highlight .ge { font-style: italic } /* Generic.Emph */
         | 
| 13 | 
            +
            .highlight .gh { font-weight: bold } /* Generic.Heading */
         | 
| 14 | 
            +
            .highlight .gp { font-weight: bold } /* Generic.Prompt */
         | 
| 15 | 
            +
            .highlight .gs { font-weight: bold } /* Generic.Strong */
         | 
| 16 | 
            +
            .highlight .gu { font-weight: bold } /* Generic.Subheading */
         | 
| 17 | 
            +
            .highlight .kc { color: #0000ff } /* Keyword.Constant */
         | 
| 18 | 
            +
            .highlight .kd { color: #0000ff } /* Keyword.Declaration */
         | 
| 19 | 
            +
            .highlight .kn { color: #0000ff } /* Keyword.Namespace */
         | 
| 20 | 
            +
            .highlight .kp { color: #0000ff } /* Keyword.Pseudo */
         | 
| 21 | 
            +
            .highlight .kr { color: #0000ff } /* Keyword.Reserved */
         | 
| 22 | 
            +
            .highlight .kt { color: #2b91af } /* Keyword.Type */
         | 
| 23 | 
            +
            .highlight .s { color: #a31515 } /* Literal.String */
         | 
| 24 | 
            +
            .highlight .nc { color: #2b91af } /* Name.Class */
         | 
| 25 | 
            +
            .highlight .ow { color: #0000ff } /* Operator.Word */
         | 
| 26 | 
            +
            .highlight .sa { color: #a31515 } /* Literal.String.Affix */
         | 
| 27 | 
            +
            .highlight .sb { color: #a31515 } /* Literal.String.Backtick */
         | 
| 28 | 
            +
            .highlight .sc { color: #a31515 } /* Literal.String.Char */
         | 
| 29 | 
            +
            .highlight .dl { color: #a31515 } /* Literal.String.Delimiter */
         | 
| 30 | 
            +
            .highlight .sd { color: #a31515 } /* Literal.String.Doc */
         | 
| 31 | 
            +
            .highlight .s2 { color: #a31515 } /* Literal.String.Double */
         | 
| 32 | 
            +
            .highlight .se { color: #a31515 } /* Literal.String.Escape */
         | 
| 33 | 
            +
            .highlight .sh { color: #a31515 } /* Literal.String.Heredoc */
         | 
| 34 | 
            +
            .highlight .si { color: #a31515 } /* Literal.String.Interpol */
         | 
| 35 | 
            +
            .highlight .sx { color: #a31515 } /* Literal.String.Other */
         | 
| 36 | 
            +
            .highlight .sr { color: #a31515 } /* Literal.String.Regex */
         | 
| 37 | 
            +
            .highlight .s1 { color: #a31515 } /* Literal.String.Single */
         | 
| 38 | 
            +
            .highlight .ss { color: #a31515 } /* Literal.String.Symbol */
         | 
    
        data/_includes/css/settings.css
    CHANGED
    
    | @@ -1,13 +1,13 @@ | |
| 1 1 | 
             
            :root {
         | 
| 2 | 
            -
              --font-family-sans: | 
| 3 | 
            -
               | 
| 4 | 
            -
              --font-family- | 
| 5 | 
            -
              --font-family- | 
| 2 | 
            +
              --font-family-sans: system-ui, -apple-system, 'Segoe UI', 'Roboto', Ubuntu, Cantarell, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
         | 
| 3 | 
            +
              /* A more modern Georgia-based serif */
         | 
| 4 | 
            +
              --font-family-serif: Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
         | 
| 5 | 
            +
              --font-family-monospace: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
         | 
| 6 | 
            +
              --font-family-cursive: cursive;
         | 
| 6 7 |  | 
| 7 8 | 
             
              /* an ideal reading width - 48rem - 768px based off 16px:1rem */
         | 
| 8 | 
            -
              /* 42 is an interesting number. ;-) */
         | 
| 9 9 | 
             
              /* remember to set this to media-queries too if you are not handling it separately */
         | 
| 10 | 
            -
              --body-width:  | 
| 10 | 
            +
              --body-width: 48rem;
         | 
| 11 11 |  | 
| 12 12 | 
             
              /* default: minor third scale progression */
         | 
| 13 13 | 
             
              --typescale-body: 1.2;
         | 
| @@ -19,7 +19,7 @@ | |
| 19 19 | 
             
              --spacing-heading: 1rem;
         | 
| 20 20 |  | 
| 21 21 |  | 
| 22 | 
            -
              /* default: minor | 
| 22 | 
            +
              /* default: minor-third scale progression */
         | 
| 23 23 | 
             
              --space-ratio: 1.2;
         | 
| 24 24 |  | 
| 25 25 | 
             
              --space-base: 1;
         | 
| @@ -43,7 +43,7 @@ | |
| 43 43 | 
             
              --space-double: calc(var(--space-base-rem) * 2);
         | 
| 44 44 |  | 
| 45 45 |  | 
| 46 | 
            -
              /* typography */
         | 
| 46 | 
            +
              /* typography (default) */
         | 
| 47 47 | 
             
              --font-family: var(--font-family-sans);
         | 
| 48 48 | 
             
              --font-family-headings: var(--font-family-sans);
         | 
| 49 49 |  | 
| @@ -114,10 +114,27 @@ | |
| 114 114 | 
             
              }
         | 
| 115 115 | 
             
            }
         | 
| 116 116 |  | 
| 117 | 
            -
            /* | 
| 117 | 
            +
            /*
         | 
| 118 | 
            +
              FONT-FAMILY
         | 
| 119 | 
            +
              sans: Everything is Sans-Serif (default)
         | 
| 120 | 
            +
              serif: Everything is Serif
         | 
| 121 | 
            +
              mixed-sans: Headings are Sans-Serif and Body is Serif
         | 
| 122 | 
            +
              mixed-serif: Headings are Serif and Body is Sans-Serif
         | 
| 123 | 
            +
             | 
| 124 | 
            +
              TBD: Need to write this better. Making it just work for now.
         | 
| 125 | 
            +
              */
         | 
| 126 | 
            +
             | 
| 118 127 | 
             
            {% if site.styles.font_family == 'serif' %}
         | 
| 119 | 
            -
            :root {
         | 
| 120 | 
            -
             | 
| 121 | 
            -
             | 
| 122 | 
            -
            }
         | 
| 128 | 
            +
              :root {
         | 
| 129 | 
            +
                --font-family: var(--font-family-serif);
         | 
| 130 | 
            +
                --font-family-headings: var(--font-family-serif);
         | 
| 131 | 
            +
              }
         | 
| 132 | 
            +
            {% elsif site.styles.font_family == 'mixed-sans' %}
         | 
| 133 | 
            +
              :root {
         | 
| 134 | 
            +
                --font-family: var(--font-family-serif);
         | 
| 135 | 
            +
              }
         | 
| 136 | 
            +
            {% elsif site.styles.font_family == 'mixed-serif' %}
         | 
| 137 | 
            +
              :root {
         | 
| 138 | 
            +
                --font-family-headings: var(--font-family-serif);
         | 
| 139 | 
            +
              }
         | 
| 123 140 | 
             
            {% endif %}
         | 
| @@ -15,7 +15,6 @@ main { | |
| 15 15 | 
             
            header.header,
         | 
| 16 16 | 
             
            footer.footer {
         | 
| 17 17 | 
             
              padding: var(--space-base) 0;
         | 
| 18 | 
            -
              font-family: var(--font-family-sans);
         | 
| 19 18 | 
             
            }
         | 
| 20 19 |  | 
| 21 20 | 
             
            header.header {
         | 
| @@ -50,10 +49,6 @@ header.header h2 { | |
| 50 49 | 
             
              font-weight: 400;
         | 
| 51 50 | 
             
            }
         | 
| 52 51 |  | 
| 53 | 
            -
            header.header :is(h1, h2, h3, h4, h5, h6) {
         | 
| 54 | 
            -
              font-family: var(--font-family-sans);
         | 
| 55 | 
            -
            }
         | 
| 56 | 
            -
             | 
| 57 52 | 
             
            footer.footer {
         | 
| 58 53 | 
             
              margin-top: var(--space-double);
         | 
| 59 54 | 
             
              border-top: var(--border-width) solid var(--border-color);
         | 
| @@ -70,7 +65,6 @@ nav { | |
| 70 65 | 
             
              margin: var(--space-base) 0 0;
         | 
| 71 66 | 
             
              padding: 0;
         | 
| 72 67 |  | 
| 73 | 
            -
              font-family: var(--font-family-sans);
         | 
| 74 68 | 
             
              font-size: var(--font-size-smaller);
         | 
| 75 69 | 
             
              text-transform: uppercase;
         | 
| 76 70 | 
             
            }
         | 
| @@ -221,15 +215,9 @@ img.full + em { | |
| 221 215 | 
             
            .items-list :is(h1, h2, h3, h4, h5, h6) {
         | 
| 222 216 | 
             
              display: inline-block;
         | 
| 223 217 | 
             
              margin: var(--space-base) var(--space-double) 0;
         | 
| 224 | 
            -
              padding: var(--space-quarter) | 
| 218 | 
            +
              padding: var(--space-quarter);
         | 
| 225 219 |  | 
| 226 220 | 
             
              color: var(--text-color-alt);
         | 
| 227 | 
            -
              background: var(--background-color-alt);
         | 
| 228 | 
            -
              border: 1px solid var(--border-color);
         | 
| 229 | 
            -
              border-top-left-radius: var(--border-radius);
         | 
| 230 | 
            -
              border-top-right-radius: var(--border-radius);
         | 
| 231 | 
            -
              border-bottom: 0 none;
         | 
| 232 | 
            -
              
         | 
| 233 221 | 
             
              font-size: calc(var(--font-size) * var(--typescale-heading));
         | 
| 234 222 | 
             
            }
         | 
| 235 223 |  | 
| @@ -347,6 +335,7 @@ figure.highlight code { | |
| 347 335 | 
             
              margin-top: var(--space-double);
         | 
| 348 336 | 
             
              padding: var(--space-base) var(--space-half);
         | 
| 349 337 | 
             
              border-top: var(--border-width) solid var(--border-color);
         | 
| 338 | 
            +
              font-family: var(--font-family-sans);
         | 
| 350 339 | 
             
              font-size: var(--font-size-small);
         | 
| 351 340 | 
             
            }
         | 
| 352 341 |  | 
| @@ -354,6 +343,14 @@ figure.highlight code { | |
| 354 343 | 
             
              text-decoration: none;
         | 
| 355 344 | 
             
            }
         | 
| 356 345 |  | 
| 346 | 
            +
            .meta-update {
         | 
| 347 | 
            +
              margin: var(--space-base) 0;
         | 
| 348 | 
            +
              padding: 0;
         | 
| 349 | 
            +
              font-size: var(--font-size-smaller);
         | 
| 350 | 
            +
              font-style: italic;
         | 
| 351 | 
            +
              color: var(--text-color-alt);
         | 
| 352 | 
            +
            }
         | 
| 353 | 
            +
             | 
| 357 354 | 
             
            /* UTILITIES --------------------------------------- */
         | 
| 358 355 |  | 
| 359 356 | 
             
            /* clamp content to one line */
         | 
    
        data/_includes/css/styles.css
    CHANGED
    
    | @@ -136,6 +136,7 @@ pre { | |
| 136 136 | 
             
              margin: var(--space-base) 0;
         | 
| 137 137 | 
             
              padding: var(--space-base) var(--space-double);
         | 
| 138 138 | 
             
              max-width: 100%;
         | 
| 139 | 
            +
              tab-size: 2;
         | 
| 139 140 |  | 
| 140 141 | 
             
              background: var(--background-color-alt);
         | 
| 141 142 | 
             
              border-radius: var(--border-radius);
         | 
| @@ -147,9 +148,12 @@ pre code { | |
| 147 148 | 
             
              background: none;
         | 
| 148 149 | 
             
              margin: 0;
         | 
| 149 150 | 
             
              padding: 0;
         | 
| 151 | 
            +
              tab-size: 2;
         | 
| 150 152 | 
             
            }
         | 
| 151 153 |  | 
| 152 154 | 
             
            code {
         | 
| 155 | 
            +
              max-width: 100%;
         | 
| 156 | 
            +
              white-space: pre-wrap;
         | 
| 153 157 | 
             
              padding: var(--space-quarter) var(--space-half);
         | 
| 154 158 | 
             
              background: var(--background-color-alt);
         | 
| 155 159 | 
             
              border-radius: var(--border-radius);
         |