chulapa-jekyll 1.0.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 +7 -0
- data/CHANGELOG.md +27 -0
- data/LICENSE +21 -0
- data/README.md +126 -0
- data/_includes/components/author.html +40 -0
- data/_includes/components/breadcrumbdatesocial.html +63 -0
- data/_includes/components/categories.html +15 -0
- data/_includes/components/disqus.html +24 -0
- data/_includes/components/headers.html +124 -0
- data/_includes/components/indexcards.html +48 -0
- data/_includes/components/navbeforeafter.html +22 -0
- data/_includes/components/tags.html +15 -0
- data/_includes/components/toc.html +112 -0
- data/_includes/custom/custom_bottomscripts.html +5 -0
- data/_includes/custom/custom_head.html +8 -0
- data/_includes/custom/custom_head_before_css.html +5 -0
- data/_includes/custom/giscus.html +1 -0
- data/_includes/footer.html +129 -0
- data/_includes/head.html +309 -0
- data/_includes/navbar.html +205 -0
- data/_includes/search/algolia.html +3 -0
- data/_includes/search/google.html +11 -0
- data/_includes/search/lunr.html +7 -0
- data/_includes/snippets/bootstrapdemo.html +1390 -0
- data/_includes/snippets/carousel.html +61 -0
- data/_includes/snippets/datetranslate.html +48 -0
- data/_includes/snippets/masonry.html +23 -0
- data/_includes/snippets/video.html +26 -0
- data/_includes/snippets/youtube.html +6 -0
- data/_layouts/archive.html +82 -0
- data/_layouts/cloudcategory.html +89 -0
- data/_layouts/cloudtag.html +86 -0
- data/_layouts/compress.html +10 -0
- data/_layouts/default.html +39 -0
- data/_layouts/indexcategory.html +36 -0
- data/_layouts/landingpage.html +51 -0
- data/_layouts/minimal.html +21 -0
- data/_layouts/search.html +59 -0
- data/_sass/bootstrap/_alert.scss +51 -0
- data/_sass/bootstrap/_badge.scss +54 -0
- data/_sass/bootstrap/_breadcrumb.scss +44 -0
- data/_sass/bootstrap/_button-group.scss +163 -0
- data/_sass/bootstrap/_buttons.scss +142 -0
- data/_sass/bootstrap/_card.scss +282 -0
- data/_sass/bootstrap/_carousel.scss +197 -0
- data/_sass/bootstrap/_close.scss +40 -0
- data/_sass/bootstrap/_code.scss +48 -0
- data/_sass/bootstrap/_custom-forms.scss +522 -0
- data/_sass/bootstrap/_dropdown.scss +192 -0
- data/_sass/bootstrap/_forms.scss +347 -0
- data/_sass/bootstrap/_functions.scss +141 -0
- data/_sass/bootstrap/_grid.scss +77 -0
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_input-group.scss +192 -0
- data/_sass/bootstrap/_jumbotron.scss +17 -0
- data/_sass/bootstrap/_list-group.scss +154 -0
- data/_sass/bootstrap/_media.scss +8 -0
- data/_sass/bootstrap/_mixins.scss +47 -0
- data/_sass/bootstrap/_modal.scss +241 -0
- data/_sass/bootstrap/_nav.scss +121 -0
- data/_sass/bootstrap/_navbar.scss +324 -0
- data/_sass/bootstrap/_pagination.scss +74 -0
- data/_sass/bootstrap/_popover.scss +170 -0
- data/_sass/bootstrap/_print.scss +141 -0
- data/_sass/bootstrap/_progress.scss +47 -0
- data/_sass/bootstrap/_reboot.scss +480 -0
- data/_sass/bootstrap/_root.scss +20 -0
- data/_sass/bootstrap/_spinners.scss +56 -0
- data/_sass/bootstrap/_tables.scss +185 -0
- data/_sass/bootstrap/_toasts.scss +44 -0
- data/_sass/bootstrap/_tooltip.scss +115 -0
- data/_sass/bootstrap/_transitions.scss +20 -0
- data/_sass/bootstrap/_type.scss +125 -0
- data/_sass/bootstrap/_utilities.scss +18 -0
- data/_sass/bootstrap/_variables.scss +1147 -0
- data/_sass/bootstrap/bootstrap-grid.scss +29 -0
- data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
- data/_sass/bootstrap/bootstrap.scss +44 -0
- data/_sass/bootstrap/mixins/_alert.scss +13 -0
- data/_sass/bootstrap/mixins/_background-variant.scss +23 -0
- data/_sass/bootstrap/mixins/_badge.scss +17 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +76 -0
- data/_sass/bootstrap/mixins/_box-shadow.scss +20 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
- data/_sass/bootstrap/mixins/_buttons.scss +110 -0
- data/_sass/bootstrap/mixins/_caret.scss +62 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
- data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
- data/_sass/bootstrap/mixins/_float.scss +14 -0
- data/_sass/bootstrap/mixins/_forms.scss +177 -0
- data/_sass/bootstrap/mixins/_gradients.scss +45 -0
- data/_sass/bootstrap/mixins/_grid-framework.scss +81 -0
- data/_sass/bootstrap/mixins/_grid.scss +69 -0
- data/_sass/bootstrap/mixins/_hover.scss +37 -0
- data/_sass/bootstrap/mixins/_image.scss +36 -0
- data/_sass/bootstrap/mixins/_list-group.scss +21 -0
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_nav-divider.scss +11 -0
- data/_sass/bootstrap/mixins/_pagination.scss +22 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_screen-reader.scss +34 -0
- data/_sass/bootstrap/mixins/_size.scss +7 -0
- data/_sass/bootstrap/mixins/_table-row.scss +39 -0
- data/_sass/bootstrap/mixins/_text-emphasis.scss +17 -0
- data/_sass/bootstrap/mixins/_text-hide.scss +11 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/mixins/_transition.scss +26 -0
- data/_sass/bootstrap/mixins/_visibility.scss +8 -0
- data/_sass/bootstrap/utilities/_align.scss +8 -0
- data/_sass/bootstrap/utilities/_background.scss +19 -0
- data/_sass/bootstrap/utilities/_borders.scss +75 -0
- data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
- data/_sass/bootstrap/utilities/_display.scss +26 -0
- data/_sass/bootstrap/utilities/_embed.scss +39 -0
- data/_sass/bootstrap/utilities/_flex.scss +51 -0
- data/_sass/bootstrap/utilities/_float.scss +11 -0
- data/_sass/bootstrap/utilities/_interactions.scss +5 -0
- data/_sass/bootstrap/utilities/_overflow.scss +5 -0
- data/_sass/bootstrap/utilities/_position.scss +32 -0
- data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
- data/_sass/bootstrap/utilities/_shadows.scss +6 -0
- data/_sass/bootstrap/utilities/_sizing.scss +20 -0
- data/_sass/bootstrap/utilities/_spacing.scss +73 -0
- data/_sass/bootstrap/utilities/_stretched-link.scss +19 -0
- data/_sass/bootstrap/utilities/_text.scss +71 -0
- data/_sass/bootstrap/utilities/_visibility.scss +13 -0
- data/_sass/bootstrap/vendor/_rfs.scss +204 -0
- data/_sass/bootstrapv5-migration.scss +79 -0
- data/_sass/chulapa-classes.scss +844 -0
- data/_sass/chulapa-master.scss +11 -0
- data/_sass/chulapa-misc.scss +105 -0
- data/_sass/chulapa-mixins.scss +77 -0
- data/_sass/chulapa-vars.scss +48 -0
- data/_sass/highlight/README.md +23 -0
- data/_sass/highlight/UNLICENSE.txt +24 -0
- data/_sass/highlight/autumn.scss +58 -0
- data/_sass/highlight/borland.scss +46 -0
- data/_sass/highlight/bw.scss +34 -0
- data/_sass/highlight/colorful.scss +61 -0
- data/_sass/highlight/cran.scss +169 -0
- data/_sass/highlight/default.scss +61 -0
- data/_sass/highlight/dracula.scss +169 -0
- data/_sass/highlight/emacs.scss +61 -0
- data/_sass/highlight/friendly.scss +61 -0
- data/_sass/highlight/fruity.scss +70 -0
- data/_sass/highlight/github.scss +61 -0
- data/_sass/highlight/gruvbox.light.scss +84 -0
- data/_sass/highlight/manni.scss +61 -0
- data/_sass/highlight/monokai.scss +65 -0
- data/_sass/highlight/murphy.scss +61 -0
- data/_sass/highlight/native.scss +70 -0
- data/_sass/highlight/pastie.scss +60 -0
- data/_sass/highlight/perldoc.scss +58 -0
- data/_sass/highlight/skeletor.scss +140 -0
- data/_sass/highlight/tango.scss +69 -0
- data/_sass/highlight/thankful_eyes.scss +173 -0
- data/_sass/highlight/trac.scss +59 -0
- data/_sass/highlight/vim.scss +70 -0
- data/_sass/highlight/vs.scss +33 -0
- data/_sass/highlight/zenburn.scss +136 -0
- data/_sass/reset-algolia.scss +24 -0
- data/_sass/skins/academia.scss +26 -0
- data/_sass/skins/auto.scss +26 -0
- data/_sass/skins/chulapa.scss +52 -0
- data/_sass/skins/deeply.scss +89 -0
- data/_sass/skins/graymor.scss +26 -0
- data/_sass/skins/hootstrap.scss +17 -0
- data/_sass/skins/journal.scss +142 -0
- data/_sass/skins/lux.scss +377 -0
- data/_sass/skins/lymcha.scss +14 -0
- data/_sass/skins/minty.scss +165 -0
- data/_sass/skins/none.scss +2 -0
- data/_sass/skins/pear.scss +21 -0
- data/_sass/skins/preptor.scss +19 -0
- data/_sass/skins/sketchy.scss +745 -0
- data/_sass/skins/sunset.scss +14 -0
- data/_sass/skins/twitter-dim.scss +30 -0
- data/_sass/skins/twitter-lights-out.scss +31 -0
- data/_sass/skins/twitter.scss +30 -0
- data/_sass/skins/universal.scss +24 -0
- data/_sass/skins/wandoo.scss +15 -0
- data/assets/atom.xml +72 -0
- data/assets/css/custom.scss +4 -0
- data/assets/css/highlighter.scss +5 -0
- data/assets/css/main.scss +35 -0
- data/assets/fonts/Chulapa/Chulapa-Bold.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Bold_v2.1.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Bold_v2.2.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Bold_v2.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Bold_vmod.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Light.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Regular.otf +0 -0
- data/assets/fonts/Chulapa/LICENCIA DE USO.txt +2 -0
- data/assets/fonts/Ferpal/Ferpal-Regular.otf +0 -0
- data/assets/js/algolia/algolia-search.js +148 -0
- data/assets/js/ch_ytdefer/ch_ytdefer.js +81 -0
- data/assets/js/ch_ytdefer/ch_ytdefer.min.js +1 -0
- data/assets/js/clipboardrouge.js +95 -0
- data/assets/js/google/google-search.js +24 -0
- data/assets/js/lunr/lunr-search.js +122 -0
- data/assets/js/lunr/lunr-store.js +35 -0
- data/assets/rss.xml +65 -0
- metadata +356 -0
@@ -0,0 +1,65 @@
|
|
1
|
+
.highlight pre { background-color: #272822; }
|
2
|
+
.highlight .hll { background-color: #272822; }
|
3
|
+
.highlight .c { color: #75715e } /* Comment */
|
4
|
+
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
|
5
|
+
.highlight .k { color: #66d9ef } /* Keyword */
|
6
|
+
.highlight .l { color: #ae81ff } /* Literal */
|
7
|
+
.highlight .n { color: #f8f8f2 } /* Name */
|
8
|
+
.highlight .o { color: #f92672 } /* Operator */
|
9
|
+
.highlight .p { color: #f8f8f2 } /* Punctuation */
|
10
|
+
.highlight .cm { color: #75715e } /* Comment.Multiline */
|
11
|
+
.highlight .cp { color: #75715e } /* Comment.Preproc */
|
12
|
+
.highlight .c1 { color: #75715e } /* Comment.Single */
|
13
|
+
.highlight .cs { color: #75715e } /* Comment.Special */
|
14
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
15
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
16
|
+
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
|
17
|
+
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
|
18
|
+
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
|
19
|
+
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
|
20
|
+
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
|
21
|
+
.highlight .kt { color: #66d9ef } /* Keyword.Type */
|
22
|
+
.highlight .ld { color: #e6db74 } /* Literal.Date */
|
23
|
+
.highlight .m { color: #ae81ff } /* Literal.Number */
|
24
|
+
.highlight .s { color: #e6db74 } /* Literal.String */
|
25
|
+
.highlight .na { color: #a6e22e } /* Name.Attribute */
|
26
|
+
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
|
27
|
+
.highlight .nc { color: #a6e22e } /* Name.Class */
|
28
|
+
.highlight .no { color: #66d9ef } /* Name.Constant */
|
29
|
+
.highlight .nd { color: #a6e22e } /* Name.Decorator */
|
30
|
+
.highlight .ni { color: #f8f8f2 } /* Name.Entity */
|
31
|
+
.highlight .ne { color: #a6e22e } /* Name.Exception */
|
32
|
+
.highlight .nf { color: #a6e22e } /* Name.Function */
|
33
|
+
.highlight .nl { color: #f8f8f2 } /* Name.Label */
|
34
|
+
.highlight .nn { color: #f8f8f2 } /* Name.Namespace */
|
35
|
+
.highlight .nx { color: #a6e22e } /* Name.Other */
|
36
|
+
.highlight .py { color: #f8f8f2 } /* Name.Property */
|
37
|
+
.highlight .nt { color: #f92672 } /* Name.Tag */
|
38
|
+
.highlight .nv { color: #f8f8f2 } /* Name.Variable */
|
39
|
+
.highlight .ow { color: #f92672 } /* Operator.Word */
|
40
|
+
.highlight .w { color: #f8f8f2 } /* Text.Whitespace */
|
41
|
+
.highlight .mf { color: #ae81ff } /* Literal.Number.Float */
|
42
|
+
.highlight .mh { color: #ae81ff } /* Literal.Number.Hex */
|
43
|
+
.highlight .mi { color: #ae81ff } /* Literal.Number.Integer */
|
44
|
+
.highlight .mo { color: #ae81ff } /* Literal.Number.Oct */
|
45
|
+
.highlight .sb { color: #e6db74 } /* Literal.String.Backtick */
|
46
|
+
.highlight .sc { color: #e6db74 } /* Literal.String.Char */
|
47
|
+
.highlight .sd { color: #e6db74 } /* Literal.String.Doc */
|
48
|
+
.highlight .s2 { color: #e6db74 } /* Literal.String.Double */
|
49
|
+
.highlight .se { color: #ae81ff } /* Literal.String.Escape */
|
50
|
+
.highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */
|
51
|
+
.highlight .si { color: #e6db74 } /* Literal.String.Interpol */
|
52
|
+
.highlight .sx { color: #e6db74 } /* Literal.String.Other */
|
53
|
+
.highlight .sr { color: #e6db74 } /* Literal.String.Regex */
|
54
|
+
.highlight .s1 { color: #e6db74 } /* Literal.String.Single */
|
55
|
+
.highlight .ss { color: #e6db74 } /* Literal.String.Symbol */
|
56
|
+
.highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
|
57
|
+
.highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */
|
58
|
+
.highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */
|
59
|
+
.highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */
|
60
|
+
.highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */
|
61
|
+
|
62
|
+
.highlight .gh { } /* Generic Heading & Diff Header */
|
63
|
+
.highlight .gu { color: #75715e; } /* Generic.Subheading & Diff Unified/Comment? */
|
64
|
+
.highlight .gd { color: #f92672; } /* Generic.Deleted & Diff Deleted */
|
65
|
+
.highlight .gi { color: #a6e22e; } /* Generic.Inserted & Diff Inserted */
|
@@ -0,0 +1,61 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #606060; font-style: italic } /* Comment */
|
3
|
+
.highlight .err { color: #F00000; background-color: #F0A0A0 } /* Error */
|
4
|
+
.highlight .k { color: #208090; font-weight: bold } /* Keyword */
|
5
|
+
.highlight .o { color: #303030 } /* Operator */
|
6
|
+
.highlight .cm { color: #606060; font-style: italic } /* Comment.Multiline */
|
7
|
+
.highlight .cp { color: #507090 } /* Comment.Preproc */
|
8
|
+
.highlight .c1 { color: #606060; font-style: italic } /* Comment.Single */
|
9
|
+
.highlight .cs { color: #c00000; font-weight: bold; font-style: italic } /* Comment.Special */
|
10
|
+
.highlight .gd { color: #A00000 } /* Generic.Deleted */
|
11
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
12
|
+
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
13
|
+
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
14
|
+
.highlight .gi { color: #00A000 } /* Generic.Inserted */
|
15
|
+
.highlight .go { color: #808080 } /* Generic.Output */
|
16
|
+
.highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
|
17
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
18
|
+
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
19
|
+
.highlight .gt { color: #0040D0 } /* Generic.Traceback */
|
20
|
+
.highlight .kc { color: #208090; font-weight: bold } /* Keyword.Constant */
|
21
|
+
.highlight .kd { color: #208090; font-weight: bold } /* Keyword.Declaration */
|
22
|
+
.highlight .kn { color: #208090; font-weight: bold } /* Keyword.Namespace */
|
23
|
+
.highlight .kp { color: #0080f0; font-weight: bold } /* Keyword.Pseudo */
|
24
|
+
.highlight .kr { color: #208090; font-weight: bold } /* Keyword.Reserved */
|
25
|
+
.highlight .kt { color: #6060f0; font-weight: bold } /* Keyword.Type */
|
26
|
+
.highlight .m { color: #6000E0; font-weight: bold } /* Literal.Number */
|
27
|
+
.highlight .s { background-color: #e0e0ff } /* Literal.String */
|
28
|
+
.highlight .na { color: #000070 } /* Name.Attribute */
|
29
|
+
.highlight .nb { color: #007020 } /* Name.Builtin */
|
30
|
+
.highlight .nc { color: #e090e0; font-weight: bold } /* Name.Class */
|
31
|
+
.highlight .no { color: #50e0d0; font-weight: bold } /* Name.Constant */
|
32
|
+
.highlight .nd { color: #505050; font-weight: bold } /* Name.Decorator */
|
33
|
+
.highlight .ni { color: #800000 } /* Name.Entity */
|
34
|
+
.highlight .ne { color: #F00000; font-weight: bold } /* Name.Exception */
|
35
|
+
.highlight .nf { color: #50e0d0; font-weight: bold } /* Name.Function */
|
36
|
+
.highlight .nl { color: #907000; font-weight: bold } /* Name.Label */
|
37
|
+
.highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
|
38
|
+
.highlight .nt { color: #007000 } /* Name.Tag */
|
39
|
+
.highlight .nv { color: #003060 } /* Name.Variable */
|
40
|
+
.highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
|
41
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
42
|
+
.highlight .mf { color: #6000E0; font-weight: bold } /* Literal.Number.Float */
|
43
|
+
.highlight .mh { color: #005080; font-weight: bold } /* Literal.Number.Hex */
|
44
|
+
.highlight .mi { color: #6060f0; font-weight: bold } /* Literal.Number.Integer */
|
45
|
+
.highlight .mo { color: #4000E0; font-weight: bold } /* Literal.Number.Oct */
|
46
|
+
.highlight .sb { background-color: #e0e0ff } /* Literal.String.Backtick */
|
47
|
+
.highlight .sc { color: #8080F0 } /* Literal.String.Char */
|
48
|
+
.highlight .sd { color: #D04020 } /* Literal.String.Doc */
|
49
|
+
.highlight .s2 { background-color: #e0e0ff } /* Literal.String.Double */
|
50
|
+
.highlight .se { color: #606060; font-weight: bold; background-color: #e0e0ff } /* Literal.String.Escape */
|
51
|
+
.highlight .sh { background-color: #e0e0ff } /* Literal.String.Heredoc */
|
52
|
+
.highlight .si { background-color: #e0e0e0 } /* Literal.String.Interpol */
|
53
|
+
.highlight .sx { color: #f08080; background-color: #e0e0ff } /* Literal.String.Other */
|
54
|
+
.highlight .sr { color: #000000; background-color: #e0e0ff } /* Literal.String.Regex */
|
55
|
+
.highlight .s1 { background-color: #e0e0ff } /* Literal.String.Single */
|
56
|
+
.highlight .ss { color: #f0c080 } /* Literal.String.Symbol */
|
57
|
+
.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */
|
58
|
+
.highlight .vc { color: #c0c0f0 } /* Name.Variable.Class */
|
59
|
+
.highlight .vg { color: #f08040 } /* Name.Variable.Global */
|
60
|
+
.highlight .vi { color: #a0a0f0 } /* Name.Variable.Instance */
|
61
|
+
.highlight .il { color: #6060f0; font-weight: bold } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,70 @@
|
|
1
|
+
.highlight pre { background-color: #404040 }
|
2
|
+
.highlight .hll { background-color: #404040 }
|
3
|
+
.highlight .c { color: #999999; font-style: italic } /* Comment */
|
4
|
+
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
5
|
+
.highlight .g { color: #d0d0d0 } /* Generic */
|
6
|
+
.highlight .k { color: #6ab825; font-weight: bold } /* Keyword */
|
7
|
+
.highlight .l { color: #d0d0d0 } /* Literal */
|
8
|
+
.highlight .n { color: #d0d0d0 } /* Name */
|
9
|
+
.highlight .o { color: #d0d0d0 } /* Operator */
|
10
|
+
.highlight .x { color: #d0d0d0 } /* Other */
|
11
|
+
.highlight .p { color: #d0d0d0 } /* Punctuation */
|
12
|
+
.highlight .cm { color: #999999; font-style: italic } /* Comment.Multiline */
|
13
|
+
.highlight .cp { color: #cd2828; font-weight: bold } /* Comment.Preproc */
|
14
|
+
.highlight .c1 { color: #999999; font-style: italic } /* Comment.Single */
|
15
|
+
.highlight .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */
|
16
|
+
.highlight .gd { color: #d22323 } /* Generic.Deleted */
|
17
|
+
.highlight .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */
|
18
|
+
.highlight .gr { color: #d22323 } /* Generic.Error */
|
19
|
+
.highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
|
20
|
+
.highlight .gi { color: #589819 } /* Generic.Inserted */
|
21
|
+
.highlight .go { color: #cccccc } /* Generic.Output */
|
22
|
+
.highlight .gp { color: #aaaaaa } /* Generic.Prompt */
|
23
|
+
.highlight .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */
|
24
|
+
.highlight .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */
|
25
|
+
.highlight .gt { color: #d22323 } /* Generic.Traceback */
|
26
|
+
.highlight .kc { color: #6ab825; font-weight: bold } /* Keyword.Constant */
|
27
|
+
.highlight .kd { color: #6ab825; font-weight: bold } /* Keyword.Declaration */
|
28
|
+
.highlight .kn { color: #6ab825; font-weight: bold } /* Keyword.Namespace */
|
29
|
+
.highlight .kp { color: #6ab825 } /* Keyword.Pseudo */
|
30
|
+
.highlight .kr { color: #6ab825; font-weight: bold } /* Keyword.Reserved */
|
31
|
+
.highlight .kt { color: #6ab825; font-weight: bold } /* Keyword.Type */
|
32
|
+
.highlight .ld { color: #d0d0d0 } /* Literal.Date */
|
33
|
+
.highlight .m { color: #3677a9 } /* Literal.Number */
|
34
|
+
.highlight .s { color: #ed9d13 } /* Literal.String */
|
35
|
+
.highlight .na { color: #bbbbbb } /* Name.Attribute */
|
36
|
+
.highlight .nb { color: #24909d } /* Name.Builtin */
|
37
|
+
.highlight .nc { color: #447fcf; text-decoration: underline } /* Name.Class */
|
38
|
+
.highlight .no { color: #40ffff } /* Name.Constant */
|
39
|
+
.highlight .nd { color: #ffa500 } /* Name.Decorator */
|
40
|
+
.highlight .ni { color: #d0d0d0 } /* Name.Entity */
|
41
|
+
.highlight .ne { color: #bbbbbb } /* Name.Exception */
|
42
|
+
.highlight .nf { color: #447fcf } /* Name.Function */
|
43
|
+
.highlight .nl { color: #d0d0d0 } /* Name.Label */
|
44
|
+
.highlight .nn { color: #447fcf; text-decoration: underline } /* Name.Namespace */
|
45
|
+
.highlight .nx { color: #d0d0d0 } /* Name.Other */
|
46
|
+
.highlight .py { color: #d0d0d0 } /* Name.Property */
|
47
|
+
.highlight .nt { color: #6ab825; font-weight: bold } /* Name.Tag */
|
48
|
+
.highlight .nv { color: #40ffff } /* Name.Variable */
|
49
|
+
.highlight .ow { color: #6ab825; font-weight: bold } /* Operator.Word */
|
50
|
+
.highlight .w { color: #666666 } /* Text.Whitespace */
|
51
|
+
.highlight .mf { color: #3677a9 } /* Literal.Number.Float */
|
52
|
+
.highlight .mh { color: #3677a9 } /* Literal.Number.Hex */
|
53
|
+
.highlight .mi { color: #3677a9 } /* Literal.Number.Integer */
|
54
|
+
.highlight .mo { color: #3677a9 } /* Literal.Number.Oct */
|
55
|
+
.highlight .sb { color: #ed9d13 } /* Literal.String.Backtick */
|
56
|
+
.highlight .sc { color: #ed9d13 } /* Literal.String.Char */
|
57
|
+
.highlight .sd { color: #ed9d13 } /* Literal.String.Doc */
|
58
|
+
.highlight .s2 { color: #ed9d13 } /* Literal.String.Double */
|
59
|
+
.highlight .se { color: #ed9d13 } /* Literal.String.Escape */
|
60
|
+
.highlight .sh { color: #ed9d13 } /* Literal.String.Heredoc */
|
61
|
+
.highlight .si { color: #ed9d13 } /* Literal.String.Interpol */
|
62
|
+
.highlight .sx { color: #ffa500 } /* Literal.String.Other */
|
63
|
+
.highlight .sr { color: #ed9d13 } /* Literal.String.Regex */
|
64
|
+
.highlight .s1 { color: #ed9d13 } /* Literal.String.Single */
|
65
|
+
.highlight .ss { color: #ed9d13 } /* Literal.String.Symbol */
|
66
|
+
.highlight .bp { color: #24909d } /* Name.Builtin.Pseudo */
|
67
|
+
.highlight .vc { color: #40ffff } /* Name.Variable.Class */
|
68
|
+
.highlight .vg { color: #40ffff } /* Name.Variable.Global */
|
69
|
+
.highlight .vi { color: #40ffff } /* Name.Variable.Instance */
|
70
|
+
.highlight .il { color: #3677a9 } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,60 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #888888 } /* Comment */
|
3
|
+
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
4
|
+
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
|
5
|
+
.highlight .cm { color: #888888 } /* Comment.Multiline */
|
6
|
+
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
|
7
|
+
.highlight .c1 { color: #888888 } /* Comment.Single */
|
8
|
+
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
|
9
|
+
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
10
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
11
|
+
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
12
|
+
.highlight .gh { color: #303030 } /* Generic.Heading */
|
13
|
+
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
14
|
+
.highlight .go { color: #888888 } /* Generic.Output */
|
15
|
+
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
16
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
17
|
+
.highlight .gu { color: #606060 } /* Generic.Subheading */
|
18
|
+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
19
|
+
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
|
20
|
+
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
|
21
|
+
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
|
22
|
+
.highlight .kp { color: #008800 } /* Keyword.Pseudo */
|
23
|
+
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
|
24
|
+
.highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */
|
25
|
+
.highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */
|
26
|
+
.highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
|
27
|
+
.highlight .na { color: #336699 } /* Name.Attribute */
|
28
|
+
.highlight .nb { color: #003388 } /* Name.Builtin */
|
29
|
+
.highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */
|
30
|
+
.highlight .no { color: #003366; font-weight: bold } /* Name.Constant */
|
31
|
+
.highlight .nd { color: #555555 } /* Name.Decorator */
|
32
|
+
.highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
|
33
|
+
.highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */
|
34
|
+
.highlight .nl { color: #336699; font-style: italic } /* Name.Label */
|
35
|
+
.highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
|
36
|
+
.highlight .py { color: #336699; font-weight: bold } /* Name.Property */
|
37
|
+
.highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
|
38
|
+
.highlight .nv { color: #336699 } /* Name.Variable */
|
39
|
+
.highlight .ow { color: #008800 } /* Operator.Word */
|
40
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
41
|
+
.highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
|
42
|
+
.highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
|
43
|
+
.highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
|
44
|
+
.highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
|
45
|
+
.highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
|
46
|
+
.highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
|
47
|
+
.highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */
|
48
|
+
.highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */
|
49
|
+
.highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */
|
50
|
+
.highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */
|
51
|
+
.highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */
|
52
|
+
.highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */
|
53
|
+
.highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */
|
54
|
+
.highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
|
55
|
+
.highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */
|
56
|
+
.highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */
|
57
|
+
.highlight .vc { color: #336699 } /* Name.Variable.Class */
|
58
|
+
.highlight .vg { color: #dd7700 } /* Name.Variable.Global */
|
59
|
+
.highlight .vi { color: #3333bb } /* Name.Variable.Instance */
|
60
|
+
.highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,58 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #228B22 } /* Comment */
|
3
|
+
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
4
|
+
.highlight .k { color: #8B008B; font-weight: bold } /* Keyword */
|
5
|
+
.highlight .cm { color: #228B22 } /* Comment.Multiline */
|
6
|
+
.highlight .cp { color: #1e889b } /* Comment.Preproc */
|
7
|
+
.highlight .c1 { color: #228B22 } /* Comment.Single */
|
8
|
+
.highlight .cs { color: #8B008B; font-weight: bold } /* Comment.Special */
|
9
|
+
.highlight .gd { color: #aa0000 } /* Generic.Deleted */
|
10
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
11
|
+
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
12
|
+
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
13
|
+
.highlight .gi { color: #00aa00 } /* Generic.Inserted */
|
14
|
+
.highlight .go { color: #888888 } /* Generic.Output */
|
15
|
+
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
16
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
17
|
+
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
18
|
+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
19
|
+
.highlight .kc { color: #8B008B; font-weight: bold } /* Keyword.Constant */
|
20
|
+
.highlight .kd { color: #8B008B; font-weight: bold } /* Keyword.Declaration */
|
21
|
+
.highlight .kn { color: #8B008B; font-weight: bold } /* Keyword.Namespace */
|
22
|
+
.highlight .kp { color: #8B008B; font-weight: bold } /* Keyword.Pseudo */
|
23
|
+
.highlight .kr { color: #8B008B; font-weight: bold } /* Keyword.Reserved */
|
24
|
+
.highlight .kt { color: #a7a7a7; font-weight: bold } /* Keyword.Type */
|
25
|
+
.highlight .m { color: #B452CD } /* Literal.Number */
|
26
|
+
.highlight .s { color: #CD5555 } /* Literal.String */
|
27
|
+
.highlight .na { color: #658b00 } /* Name.Attribute */
|
28
|
+
.highlight .nb { color: #658b00 } /* Name.Builtin */
|
29
|
+
.highlight .nc { color: #008b45; font-weight: bold } /* Name.Class */
|
30
|
+
.highlight .no { color: #00688B } /* Name.Constant */
|
31
|
+
.highlight .nd { color: #707a7c } /* Name.Decorator */
|
32
|
+
.highlight .ne { color: #008b45; font-weight: bold } /* Name.Exception */
|
33
|
+
.highlight .nf { color: #008b45 } /* Name.Function */
|
34
|
+
.highlight .nn { color: #008b45; text-decoration: underline } /* Name.Namespace */
|
35
|
+
.highlight .nt { color: #8B008B; font-weight: bold } /* Name.Tag */
|
36
|
+
.highlight .nv { color: #00688B } /* Name.Variable */
|
37
|
+
.highlight .ow { color: #8B008B } /* Operator.Word */
|
38
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
39
|
+
.highlight .mf { color: #B452CD } /* Literal.Number.Float */
|
40
|
+
.highlight .mh { color: #B452CD } /* Literal.Number.Hex */
|
41
|
+
.highlight .mi { color: #B452CD } /* Literal.Number.Integer */
|
42
|
+
.highlight .mo { color: #B452CD } /* Literal.Number.Oct */
|
43
|
+
.highlight .sb { color: #CD5555 } /* Literal.String.Backtick */
|
44
|
+
.highlight .sc { color: #CD5555 } /* Literal.String.Char */
|
45
|
+
.highlight .sd { color: #CD5555 } /* Literal.String.Doc */
|
46
|
+
.highlight .s2 { color: #CD5555 } /* Literal.String.Double */
|
47
|
+
.highlight .se { color: #CD5555 } /* Literal.String.Escape */
|
48
|
+
.highlight .sh { color: #1c7e71; font-style: italic } /* Literal.String.Heredoc */
|
49
|
+
.highlight .si { color: #CD5555 } /* Literal.String.Interpol */
|
50
|
+
.highlight .sx { color: #cb6c20 } /* Literal.String.Other */
|
51
|
+
.highlight .sr { color: #1c7e71 } /* Literal.String.Regex */
|
52
|
+
.highlight .s1 { color: #CD5555 } /* Literal.String.Single */
|
53
|
+
.highlight .ss { color: #CD5555 } /* Literal.String.Symbol */
|
54
|
+
.highlight .bp { color: #658b00 } /* Name.Builtin.Pseudo */
|
55
|
+
.highlight .vc { color: #00688B } /* Name.Variable.Class */
|
56
|
+
.highlight .vg { color: #00688B } /* Name.Variable.Global */
|
57
|
+
.highlight .vi { color: #00688B } /* Name.Variable.Instance */
|
58
|
+
.highlight .il { color: #B452CD } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,140 @@
|
|
1
|
+
/* Skeletor Syntax 0.3.0
|
2
|
+
*
|
3
|
+
* https://github.com/ramonmcros/skeletor-syntax
|
4
|
+
*
|
5
|
+
* Code licensed under the MIT license
|
6
|
+
*
|
7
|
+
* (Poorly) Adapted by dieghernan https://github.com/dieghernan
|
8
|
+
*/
|
9
|
+
|
10
|
+
$bg: #2b2836;
|
11
|
+
$text: #dce7fd;
|
12
|
+
$comment: #655e7f;
|
13
|
+
$punct: #dce7fd;
|
14
|
+
$string: #93b4ff;
|
15
|
+
$attr: #bd93f9;
|
16
|
+
$bool: #ff8adb;
|
17
|
+
$numb: $bool;
|
18
|
+
$key: #f3e4a2;
|
19
|
+
$regex: #84fba2;
|
20
|
+
|
21
|
+
.highlight {
|
22
|
+
code,
|
23
|
+
pre {
|
24
|
+
background: $bg;
|
25
|
+
color: $text;
|
26
|
+
}
|
27
|
+
|
28
|
+
// Comment
|
29
|
+
.c,
|
30
|
+
.ch,
|
31
|
+
.cm,
|
32
|
+
.cpf,
|
33
|
+
.c1,
|
34
|
+
.cp,
|
35
|
+
.cs {
|
36
|
+
color: $comment;
|
37
|
+
}
|
38
|
+
|
39
|
+
// Punctuaction
|
40
|
+
|
41
|
+
.err,
|
42
|
+
.g,
|
43
|
+
.l,
|
44
|
+
.n,
|
45
|
+
.x,
|
46
|
+
.p,
|
47
|
+
.ge,
|
48
|
+
.gr,
|
49
|
+
.gh,
|
50
|
+
.gi,
|
51
|
+
.gp,
|
52
|
+
.gs,
|
53
|
+
.gu,
|
54
|
+
.gt,
|
55
|
+
.ld,
|
56
|
+
.no,
|
57
|
+
.nd,
|
58
|
+
.ni,
|
59
|
+
.ne,
|
60
|
+
.nn,
|
61
|
+
.nx,
|
62
|
+
.py,
|
63
|
+
.w,
|
64
|
+
.bp {
|
65
|
+
color: $punct;
|
66
|
+
}
|
67
|
+
|
68
|
+
// String
|
69
|
+
|
70
|
+
.hll,
|
71
|
+
.dl,
|
72
|
+
.sd,
|
73
|
+
.s2,
|
74
|
+
.se,
|
75
|
+
.sh,
|
76
|
+
.si,
|
77
|
+
.sx,
|
78
|
+
.s1,
|
79
|
+
.ss {
|
80
|
+
color: $string;
|
81
|
+
}
|
82
|
+
|
83
|
+
// Regex
|
84
|
+
|
85
|
+
.s,
|
86
|
+
.sa,
|
87
|
+
.sb,
|
88
|
+
.sc,
|
89
|
+
.sr {
|
90
|
+
color: $regex;
|
91
|
+
}
|
92
|
+
|
93
|
+
// Attribute
|
94
|
+
.na,
|
95
|
+
.nc,
|
96
|
+
.nf,
|
97
|
+
.fm {
|
98
|
+
color: $attr;
|
99
|
+
}
|
100
|
+
|
101
|
+
//Boolean
|
102
|
+
|
103
|
+
.kc,
|
104
|
+
.kn,
|
105
|
+
.kp,
|
106
|
+
.kr,
|
107
|
+
.ow {
|
108
|
+
color: $bool;
|
109
|
+
}
|
110
|
+
|
111
|
+
// Number
|
112
|
+
.m,
|
113
|
+
.mb,
|
114
|
+
.mf,
|
115
|
+
.mh,
|
116
|
+
.mi,
|
117
|
+
.mo,
|
118
|
+
.il {
|
119
|
+
color: $numb;
|
120
|
+
}
|
121
|
+
|
122
|
+
.k,
|
123
|
+
.nt,
|
124
|
+
.o {
|
125
|
+
color: $key;
|
126
|
+
}
|
127
|
+
|
128
|
+
.kd,
|
129
|
+
.kt,
|
130
|
+
.nb,
|
131
|
+
.nl,
|
132
|
+
.nv,
|
133
|
+
.vc,
|
134
|
+
.vg,
|
135
|
+
.vi,
|
136
|
+
.vm {
|
137
|
+
color: $string;
|
138
|
+
}
|
139
|
+
}
|
140
|
+
|
@@ -0,0 +1,69 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #8f5902; font-style: italic } /* Comment */
|
3
|
+
.highlight .err { color: #a40000; border: 1px solid #ef2929 } /* Error */
|
4
|
+
.highlight .g { color: #000000 } /* Generic */
|
5
|
+
.highlight .k { color: #204a87; font-weight: bold } /* Keyword */
|
6
|
+
.highlight .l { color: #000000 } /* Literal */
|
7
|
+
.highlight .n { color: #000000 } /* Name */
|
8
|
+
.highlight .o { color: #ce5c00; font-weight: bold } /* Operator */
|
9
|
+
.highlight .x { color: #000000 } /* Other */
|
10
|
+
.highlight .p { color: #000000; font-weight: bold } /* Punctuation */
|
11
|
+
.highlight .cm { color: #8f5902; font-style: italic } /* Comment.Multiline */
|
12
|
+
.highlight .cp { color: #8f5902; font-style: italic } /* Comment.Preproc */
|
13
|
+
.highlight .c1 { color: #8f5902; font-style: italic } /* Comment.Single */
|
14
|
+
.highlight .cs { color: #8f5902; font-style: italic } /* Comment.Special */
|
15
|
+
.highlight .gd { color: #a40000 } /* Generic.Deleted */
|
16
|
+
.highlight .ge { color: #000000; font-style: italic } /* Generic.Emph */
|
17
|
+
.highlight .gr { color: #ef2929 } /* Generic.Error */
|
18
|
+
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
19
|
+
.highlight .gi { color: #00A000 } /* Generic.Inserted */
|
20
|
+
.highlight .go { color: #000000; font-style: italic } /* Generic.Output */
|
21
|
+
.highlight .gp { color: #8f5902 } /* Generic.Prompt */
|
22
|
+
.highlight .gs { color: #000000; font-weight: bold } /* Generic.Strong */
|
23
|
+
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
24
|
+
.highlight .gt { color: #a40000; font-weight: bold } /* Generic.Traceback */
|
25
|
+
.highlight .kc { color: #204a87; font-weight: bold } /* Keyword.Constant */
|
26
|
+
.highlight .kd { color: #204a87; font-weight: bold } /* Keyword.Declaration */
|
27
|
+
.highlight .kn { color: #204a87; font-weight: bold } /* Keyword.Namespace */
|
28
|
+
.highlight .kp { color: #204a87; font-weight: bold } /* Keyword.Pseudo */
|
29
|
+
.highlight .kr { color: #204a87; font-weight: bold } /* Keyword.Reserved */
|
30
|
+
.highlight .kt { color: #204a87; font-weight: bold } /* Keyword.Type */
|
31
|
+
.highlight .ld { color: #000000 } /* Literal.Date */
|
32
|
+
.highlight .m { color: #0000cf; font-weight: bold } /* Literal.Number */
|
33
|
+
.highlight .s { color: #4e9a06 } /* Literal.String */
|
34
|
+
.highlight .na { color: #c4a000 } /* Name.Attribute */
|
35
|
+
.highlight .nb { color: #204a87 } /* Name.Builtin */
|
36
|
+
.highlight .nc { color: #000000 } /* Name.Class */
|
37
|
+
.highlight .no { color: #000000 } /* Name.Constant */
|
38
|
+
.highlight .nd { color: #5c35cc; font-weight: bold } /* Name.Decorator */
|
39
|
+
.highlight .ni { color: #ce5c00 } /* Name.Entity */
|
40
|
+
.highlight .ne { color: #cc0000; font-weight: bold } /* Name.Exception */
|
41
|
+
.highlight .nf { color: #000000 } /* Name.Function */
|
42
|
+
.highlight .nl { color: #f57900 } /* Name.Label */
|
43
|
+
.highlight .nn { color: #000000 } /* Name.Namespace */
|
44
|
+
.highlight .nx { color: #000000 } /* Name.Other */
|
45
|
+
.highlight .py { color: #000000 } /* Name.Property */
|
46
|
+
.highlight .nt { color: #204a87; font-weight: bold } /* Name.Tag */
|
47
|
+
.highlight .nv { color: #000000 } /* Name.Variable */
|
48
|
+
.highlight .ow { color: #204a87; font-weight: bold } /* Operator.Word */
|
49
|
+
.highlight .w { color: #f8f8f8; text-decoration: underline } /* Text.Whitespace */
|
50
|
+
.highlight .mf { color: #0000cf; font-weight: bold } /* Literal.Number.Float */
|
51
|
+
.highlight .mh { color: #0000cf; font-weight: bold } /* Literal.Number.Hex */
|
52
|
+
.highlight .mi { color: #0000cf; font-weight: bold } /* Literal.Number.Integer */
|
53
|
+
.highlight .mo { color: #0000cf; font-weight: bold } /* Literal.Number.Oct */
|
54
|
+
.highlight .sb { color: #4e9a06 } /* Literal.String.Backtick */
|
55
|
+
.highlight .sc { color: #4e9a06 } /* Literal.String.Char */
|
56
|
+
.highlight .sd { color: #8f5902; font-style: italic } /* Literal.String.Doc */
|
57
|
+
.highlight .s2 { color: #4e9a06 } /* Literal.String.Double */
|
58
|
+
.highlight .se { color: #4e9a06 } /* Literal.String.Escape */
|
59
|
+
.highlight .sh { color: #4e9a06 } /* Literal.String.Heredoc */
|
60
|
+
.highlight .si { color: #4e9a06 } /* Literal.String.Interpol */
|
61
|
+
.highlight .sx { color: #4e9a06 } /* Literal.String.Other */
|
62
|
+
.highlight .sr { color: #4e9a06 } /* Literal.String.Regex */
|
63
|
+
.highlight .s1 { color: #4e9a06 } /* Literal.String.Single */
|
64
|
+
.highlight .ss { color: #4e9a06 } /* Literal.String.Symbol */
|
65
|
+
.highlight .bp { color: #3465a4 } /* Name.Builtin.Pseudo */
|
66
|
+
.highlight .vc { color: #000000 } /* Name.Variable.Class */
|
67
|
+
.highlight .vg { color: #000000 } /* Name.Variable.Global */
|
68
|
+
.highlight .vi { color: #000000 } /* Name.Variable.Instance */
|
69
|
+
.highlight .il { color: #0000cf; font-weight: bold } /* Literal.Number.Integer.Long */
|