hashup 0.0.5

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.
Files changed (166) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +20 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +45 -0
  6. data/Rakefile +5 -0
  7. data/bin/hashup +4 -0
  8. data/hashup.gemspec +28 -0
  9. data/lib/hashup.rb +14 -0
  10. data/lib/hashup/configuration.rb +26 -0
  11. data/lib/hashup/generator.rb +103 -0
  12. data/lib/hashup/post.rb +22 -0
  13. data/lib/hashup/site.rb +74 -0
  14. data/lib/hashup/templates/config.yml +8 -0
  15. data/lib/hashup/templates/contents/_pages/about.ma +7 -0
  16. data/lib/hashup/templates/contents/_posts/markascend.ma +54 -0
  17. data/lib/hashup/templates/contents/data.yml +9 -0
  18. data/lib/hashup/templates/themes/_layout/_footer.slim +11 -0
  19. data/lib/hashup/templates/themes/_layout/_header.slim +12 -0
  20. data/lib/hashup/templates/themes/_layout/_layout.slim +5 -0
  21. data/lib/hashup/templates/themes/_layout/_nav.slim +7 -0
  22. data/lib/hashup/templates/themes/assets/flat-ui/_config.sass +16 -0
  23. data/lib/hashup/templates/themes/assets/flat-ui/_icon-font-24.sass +91 -0
  24. data/lib/hashup/templates/themes/assets/flat-ui/_icon-font.sass +91 -0
  25. data/lib/hashup/templates/themes/assets/flat-ui/_mixins.sass +96 -0
  26. data/lib/hashup/templates/themes/assets/flat-ui/_spaces.sass +129 -0
  27. data/lib/hashup/templates/themes/assets/flat-ui/flat-ui.sass +39 -0
  28. data/lib/hashup/templates/themes/assets/flat-ui/modules/_btn.sass +73 -0
  29. data/lib/hashup/templates/themes/assets/flat-ui/modules/_checkbox-and-radio.sass +86 -0
  30. data/lib/hashup/templates/themes/assets/flat-ui/modules/_demo.sass +228 -0
  31. data/lib/hashup/templates/themes/assets/flat-ui/modules/_footer.sass +57 -0
  32. data/lib/hashup/templates/themes/assets/flat-ui/modules/_input.sass +66 -0
  33. data/lib/hashup/templates/themes/assets/flat-ui/modules/_login.sass +95 -0
  34. data/lib/hashup/templates/themes/assets/flat-ui/modules/_navbar.sass +152 -0
  35. data/lib/hashup/templates/themes/assets/flat-ui/modules/_pager.sass +56 -0
  36. data/lib/hashup/templates/themes/assets/flat-ui/modules/_pagination.sass +75 -0
  37. data/lib/hashup/templates/themes/assets/flat-ui/modules/_palette.sass +88 -0
  38. data/lib/hashup/templates/themes/assets/flat-ui/modules/_progress.sass +29 -0
  39. data/lib/hashup/templates/themes/assets/flat-ui/modules/_select.sass +163 -0
  40. data/lib/hashup/templates/themes/assets/flat-ui/modules/_share.sass +34 -0
  41. data/lib/hashup/templates/themes/assets/flat-ui/modules/_tagsinput.sass +91 -0
  42. data/lib/hashup/templates/themes/assets/flat-ui/modules/_tile.sass +42 -0
  43. data/lib/hashup/templates/themes/assets/flat-ui/modules/_todo.sass +77 -0
  44. data/lib/hashup/templates/themes/assets/flat-ui/modules/_toggle.sass +85 -0
  45. data/lib/hashup/templates/themes/assets/flat-ui/modules/_tooltip.sass +45 -0
  46. data/lib/hashup/templates/themes/assets/flat-ui/modules/_type.sass +43 -0
  47. data/lib/hashup/templates/themes/assets/flat-ui/modules/_ui-slider.sass +44 -0
  48. data/lib/hashup/templates/themes/assets/flat-ui/modules/_video.sass +358 -0
  49. data/lib/hashup/templates/themes/index.slim +9 -0
  50. data/lib/hashup/templates/themes/post.slim +3 -0
  51. data/lib/hashup/templates/themes/static/css/bootstrap.css +6039 -0
  52. data/lib/hashup/templates/themes/static/css/custom.css +11 -0
  53. data/lib/hashup/templates/themes/static/css/flat-ui.css +2533 -0
  54. data/lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-16.dev.svg +112 -0
  55. data/lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-16.eot +0 -0
  56. data/lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-16.svg +112 -0
  57. data/lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-16.ttf +0 -0
  58. data/lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-16.woff +0 -0
  59. data/lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-24.dev.svg +111 -0
  60. data/lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-24.eot +0 -0
  61. data/lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-24.svg +111 -0
  62. data/lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-24.ttf +0 -0
  63. data/lib/hashup/templates/themes/static/fonts/Flat-UI-Icons-24.woff +0 -0
  64. data/lib/hashup/templates/themes/static/images/checkbox-2x.png +0 -0
  65. data/lib/hashup/templates/themes/static/images/checkbox.png +0 -0
  66. data/lib/hashup/templates/themes/static/images/demo/browser-2x.png +0 -0
  67. data/lib/hashup/templates/themes/static/images/demo/browser-author.jpg +0 -0
  68. data/lib/hashup/templates/themes/static/images/demo/browser-pic-1.jpg +0 -0
  69. data/lib/hashup/templates/themes/static/images/demo/browser-pic-2.jpg +0 -0
  70. data/lib/hashup/templates/themes/static/images/demo/browser-pic-3.jpg +0 -0
  71. data/lib/hashup/templates/themes/static/images/demo/browser-pic-4.jpg +0 -0
  72. data/lib/hashup/templates/themes/static/images/demo/browser-pic-5.jpg +0 -0
  73. data/lib/hashup/templates/themes/static/images/demo/browser-pic-6.jpg +0 -0
  74. data/lib/hashup/templates/themes/static/images/demo/browser.png +0 -0
  75. data/lib/hashup/templates/themes/static/images/demo/html-icon.png +0 -0
  76. data/lib/hashup/templates/themes/static/images/demo/logo-mask-2x.png +0 -0
  77. data/lib/hashup/templates/themes/static/images/demo/logo-mask.png +0 -0
  78. data/lib/hashup/templates/themes/static/images/demo/video.jpg +0 -0
  79. data/lib/hashup/templates/themes/static/images/favicon.ico +0 -0
  80. data/lib/hashup/templates/themes/static/images/footer/logo.png +0 -0
  81. data/lib/hashup/templates/themes/static/images/illustrations/bag.png +0 -0
  82. data/lib/hashup/templates/themes/static/images/illustrations/book.png +0 -0
  83. data/lib/hashup/templates/themes/static/images/illustrations/calendar.png +0 -0
  84. data/lib/hashup/templates/themes/static/images/illustrations/clipboard.png +0 -0
  85. data/lib/hashup/templates/themes/static/images/illustrations/colors.png +0 -0
  86. data/lib/hashup/templates/themes/static/images/illustrations/compass.png +0 -0
  87. data/lib/hashup/templates/themes/static/images/illustrations/gift.png +0 -0
  88. data/lib/hashup/templates/themes/static/images/illustrations/infinity.png +0 -0
  89. data/lib/hashup/templates/themes/static/images/illustrations/mail.png +0 -0
  90. data/lib/hashup/templates/themes/static/images/illustrations/map.png +0 -0
  91. data/lib/hashup/templates/themes/static/images/illustrations/paper.png +0 -0
  92. data/lib/hashup/templates/themes/static/images/illustrations/retina.png +0 -0
  93. data/lib/hashup/templates/themes/static/images/illustrations/share.png +0 -0
  94. data/lib/hashup/templates/themes/static/images/illustrations/time.png +0 -0
  95. data/lib/hashup/templates/themes/static/images/login/icon.png +0 -0
  96. data/lib/hashup/templates/themes/static/images/login/imac-2x.png +0 -0
  97. data/lib/hashup/templates/themes/static/images/login/imac.png +0 -0
  98. data/lib/hashup/templates/themes/static/images/pager/next.png +0 -0
  99. data/lib/hashup/templates/themes/static/images/pager/previous.png +0 -0
  100. data/lib/hashup/templates/themes/static/images/radio-2x.png +0 -0
  101. data/lib/hashup/templates/themes/static/images/radio.png +0 -0
  102. data/lib/hashup/templates/themes/static/images/select/toggle.png +0 -0
  103. data/lib/hashup/templates/themes/static/images/tile/ribbon-2x.png +0 -0
  104. data/lib/hashup/templates/themes/static/images/tile/ribbon.png +0 -0
  105. data/lib/hashup/templates/themes/static/images/todo/done-2x.png +0 -0
  106. data/lib/hashup/templates/themes/static/images/todo/done.png +0 -0
  107. data/lib/hashup/templates/themes/static/images/todo/search-2x.png +0 -0
  108. data/lib/hashup/templates/themes/static/images/todo/search.png +0 -0
  109. data/lib/hashup/templates/themes/static/images/todo/todo-2x.png +0 -0
  110. data/lib/hashup/templates/themes/static/images/todo/todo.png +0 -0
  111. data/lib/hashup/templates/themes/static/images/toggle/block-off.png +0 -0
  112. data/lib/hashup/templates/themes/static/images/toggle/block-on.png +0 -0
  113. data/lib/hashup/templates/themes/static/images/toggle/icon-off-2x.png +0 -0
  114. data/lib/hashup/templates/themes/static/images/toggle/icon-off.png +0 -0
  115. data/lib/hashup/templates/themes/static/images/toggle/icon-on-2x.png +0 -0
  116. data/lib/hashup/templates/themes/static/images/toggle/icon-on.png +0 -0
  117. data/lib/hashup/templates/themes/static/images/video/fullscreen-2x.png +0 -0
  118. data/lib/hashup/templates/themes/static/images/video/fullscreen.png +0 -0
  119. data/lib/hashup/templates/themes/static/images/video/pause-2x.png +0 -0
  120. data/lib/hashup/templates/themes/static/images/video/pause.png +0 -0
  121. data/lib/hashup/templates/themes/static/images/video/play-2x.png +0 -0
  122. data/lib/hashup/templates/themes/static/images/video/play.png +0 -0
  123. data/lib/hashup/templates/themes/static/images/video/poster.jpg +0 -0
  124. data/lib/hashup/templates/themes/static/images/video/volume-full-2x.png +0 -0
  125. data/lib/hashup/templates/themes/static/images/video/volume-full.png +0 -0
  126. data/lib/hashup/templates/themes/static/images/video/volume-off-2x.png +0 -0
  127. data/lib/hashup/templates/themes/static/images/video/volume-off.png +0 -0
  128. data/lib/hashup/templates/themes/static/js/application.js +51 -0
  129. data/lib/hashup/templates/themes/static/js/bootstrap-tooltip.js +353 -0
  130. data/lib/hashup/templates/themes/static/js/custom_checkbox_and_radio.js +53 -0
  131. data/lib/hashup/templates/themes/static/js/custom_radio.js +28 -0
  132. data/lib/hashup/templates/themes/static/js/html5shiv.js +8 -0
  133. data/lib/hashup/templates/themes/static/js/icon-font-ie7.js +44 -0
  134. data/lib/hashup/templates/themes/static/js/jquery-1.8.2.min.js +2 -0
  135. data/lib/hashup/templates/themes/static/js/jquery-ui-1.10.0.custom.min.js +6 -0
  136. data/lib/hashup/templates/themes/static/js/jquery.dropkick-1.0.0.js +400 -0
  137. data/lib/hashup/templates/themes/static/js/jquery.placeholder.js +157 -0
  138. data/lib/hashup/templates/themes/static/js/jquery.tagsinput.js +354 -0
  139. data/lib/hashup/templates/themes/static/js/lte-ie7-24.js +44 -0
  140. data/lib/hashup/templates/themes/static/pygments-css/README.rst +27 -0
  141. data/lib/hashup/templates/themes/static/pygments-css/autumn.css +58 -0
  142. data/lib/hashup/templates/themes/static/pygments-css/borland.css +46 -0
  143. data/lib/hashup/templates/themes/static/pygments-css/bw.css +34 -0
  144. data/lib/hashup/templates/themes/static/pygments-css/colorful.css +61 -0
  145. data/lib/hashup/templates/themes/static/pygments-css/default.css +62 -0
  146. data/lib/hashup/templates/themes/static/pygments-css/emacs.css +61 -0
  147. data/lib/hashup/templates/themes/static/pygments-css/friendly.css +61 -0
  148. data/lib/hashup/templates/themes/static/pygments-css/fruity.css +69 -0
  149. data/lib/hashup/templates/themes/static/pygments-css/github.css +61 -0
  150. data/lib/hashup/templates/themes/static/pygments-css/manni.css +61 -0
  151. data/lib/hashup/templates/themes/static/pygments-css/monokai.css +59 -0
  152. data/lib/hashup/templates/themes/static/pygments-css/murphy.css +61 -0
  153. data/lib/hashup/templates/themes/static/pygments-css/native.css +69 -0
  154. data/lib/hashup/templates/themes/static/pygments-css/pastie.css +60 -0
  155. data/lib/hashup/templates/themes/static/pygments-css/perldoc.css +58 -0
  156. data/lib/hashup/templates/themes/static/pygments-css/tango.css +69 -0
  157. data/lib/hashup/templates/themes/static/pygments-css/trac.css +59 -0
  158. data/lib/hashup/templates/themes/static/pygments-css/vim.css +69 -0
  159. data/lib/hashup/templates/themes/static/pygments-css/vs.css +33 -0
  160. data/lib/hashup/templates/themes/static/pygments-css/zenburn.css +1 -0
  161. data/lib/hashup/templates/themes/stylesheets/style.css +0 -0
  162. data/lib/hashup/version.rb +3 -0
  163. data/spec/generator_spec.rb +11 -0
  164. data/spec/hashup_spec.rb +12 -0
  165. data/spec/spec_helper.rb +9 -0
  166. metadata +310 -0
@@ -0,0 +1,69 @@
1
+ .codehilite .hll { background-color: #333333 }
2
+ .codehilite .c { color: #008800; font-style: italic; background-color: #0f140f } /* Comment */
3
+ .codehilite .err { color: #ffffff } /* Error */
4
+ .codehilite .g { color: #ffffff } /* Generic */
5
+ .codehilite .k { color: #fb660a; font-weight: bold } /* Keyword */
6
+ .codehilite .l { color: #ffffff } /* Literal */
7
+ .codehilite .n { color: #ffffff } /* Name */
8
+ .codehilite .o { color: #ffffff } /* Operator */
9
+ .codehilite .x { color: #ffffff } /* Other */
10
+ .codehilite .p { color: #ffffff } /* Punctuation */
11
+ .codehilite .cm { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Multiline */
12
+ .codehilite .cp { color: #ff0007; font-weight: bold; font-style: italic; background-color: #0f140f } /* Comment.Preproc */
13
+ .codehilite .c1 { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Single */
14
+ .codehilite .cs { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Special */
15
+ .codehilite .gd { color: #ffffff } /* Generic.Deleted */
16
+ .codehilite .ge { color: #ffffff } /* Generic.Emph */
17
+ .codehilite .gr { color: #ffffff } /* Generic.Error */
18
+ .codehilite .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
19
+ .codehilite .gi { color: #ffffff } /* Generic.Inserted */
20
+ .codehilite .go { color: #444444; background-color: #222222 } /* Generic.Output */
21
+ .codehilite .gp { color: #ffffff } /* Generic.Prompt */
22
+ .codehilite .gs { color: #ffffff } /* Generic.Strong */
23
+ .codehilite .gu { color: #ffffff; font-weight: bold } /* Generic.Subheading */
24
+ .codehilite .gt { color: #ffffff } /* Generic.Traceback */
25
+ .codehilite .kc { color: #fb660a; font-weight: bold } /* Keyword.Constant */
26
+ .codehilite .kd { color: #fb660a; font-weight: bold } /* Keyword.Declaration */
27
+ .codehilite .kn { color: #fb660a; font-weight: bold } /* Keyword.Namespace */
28
+ .codehilite .kp { color: #fb660a } /* Keyword.Pseudo */
29
+ .codehilite .kr { color: #fb660a; font-weight: bold } /* Keyword.Reserved */
30
+ .codehilite .kt { color: #cdcaa9; font-weight: bold } /* Keyword.Type */
31
+ .codehilite .ld { color: #ffffff } /* Literal.Date */
32
+ .codehilite .m { color: #0086f7; font-weight: bold } /* Literal.Number */
33
+ .codehilite .s { color: #0086d2 } /* Literal.String */
34
+ .codehilite .na { color: #ff0086; font-weight: bold } /* Name.Attribute */
35
+ .codehilite .nb { color: #ffffff } /* Name.Builtin */
36
+ .codehilite .nc { color: #ffffff } /* Name.Class */
37
+ .codehilite .no { color: #0086d2 } /* Name.Constant */
38
+ .codehilite .nd { color: #ffffff } /* Name.Decorator */
39
+ .codehilite .ni { color: #ffffff } /* Name.Entity */
40
+ .codehilite .ne { color: #ffffff } /* Name.Exception */
41
+ .codehilite .nf { color: #ff0086; font-weight: bold } /* Name.Function */
42
+ .codehilite .nl { color: #ffffff } /* Name.Label */
43
+ .codehilite .nn { color: #ffffff } /* Name.Namespace */
44
+ .codehilite .nx { color: #ffffff } /* Name.Other */
45
+ .codehilite .py { color: #ffffff } /* Name.Property */
46
+ .codehilite .nt { color: #fb660a; font-weight: bold } /* Name.Tag */
47
+ .codehilite .nv { color: #fb660a } /* Name.Variable */
48
+ .codehilite .ow { color: #ffffff } /* Operator.Word */
49
+ .codehilite .w { color: #888888 } /* Text.Whitespace */
50
+ .codehilite .mf { color: #0086f7; font-weight: bold } /* Literal.Number.Float */
51
+ .codehilite .mh { color: #0086f7; font-weight: bold } /* Literal.Number.Hex */
52
+ .codehilite .mi { color: #0086f7; font-weight: bold } /* Literal.Number.Integer */
53
+ .codehilite .mo { color: #0086f7; font-weight: bold } /* Literal.Number.Oct */
54
+ .codehilite .sb { color: #0086d2 } /* Literal.String.Backtick */
55
+ .codehilite .sc { color: #0086d2 } /* Literal.String.Char */
56
+ .codehilite .sd { color: #0086d2 } /* Literal.String.Doc */
57
+ .codehilite .s2 { color: #0086d2 } /* Literal.String.Double */
58
+ .codehilite .se { color: #0086d2 } /* Literal.String.Escape */
59
+ .codehilite .sh { color: #0086d2 } /* Literal.String.Heredoc */
60
+ .codehilite .si { color: #0086d2 } /* Literal.String.Interpol */
61
+ .codehilite .sx { color: #0086d2 } /* Literal.String.Other */
62
+ .codehilite .sr { color: #0086d2 } /* Literal.String.Regex */
63
+ .codehilite .s1 { color: #0086d2 } /* Literal.String.Single */
64
+ .codehilite .ss { color: #0086d2 } /* Literal.String.Symbol */
65
+ .codehilite .bp { color: #ffffff } /* Name.Builtin.Pseudo */
66
+ .codehilite .vc { color: #fb660a } /* Name.Variable.Class */
67
+ .codehilite .vg { color: #fb660a } /* Name.Variable.Global */
68
+ .codehilite .vi { color: #fb660a } /* Name.Variable.Instance */
69
+ .codehilite .il { color: #0086f7; font-weight: bold } /* Literal.Number.Integer.Long */
@@ -0,0 +1,61 @@
1
+ .hll { background-color: #ffffcc }
2
+ .c { color: #999988; font-style: italic } /* Comment */
3
+ .err { color: #a61717; background-color: #e3d2d2 } /* Error */
4
+ .k { color: #000000; font-weight: bold } /* Keyword */
5
+ .o { color: #000000; font-weight: bold } /* Operator */
6
+ .cm { color: #999988; font-style: italic } /* Comment.Multiline */
7
+ .cp { color: #999999; font-weight: bold; font-style: italic } /* Comment.Preproc */
8
+ .c1 { color: #999988; font-style: italic } /* Comment.Single */
9
+ .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
10
+ .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
11
+ .ge { color: #000000; font-style: italic } /* Generic.Emph */
12
+ .gr { color: #aa0000 } /* Generic.Error */
13
+ .gh { color: #999999 } /* Generic.Heading */
14
+ .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
15
+ .go { color: #888888 } /* Generic.Output */
16
+ .gp { color: #555555 } /* Generic.Prompt */
17
+ .gs { font-weight: bold } /* Generic.Strong */
18
+ .gu { color: #aaaaaa } /* Generic.Subheading */
19
+ .gt { color: #aa0000 } /* Generic.Traceback */
20
+ .kc { color: #000000; font-weight: bold } /* Keyword.Constant */
21
+ .kd { color: #000000; font-weight: bold } /* Keyword.Declaration */
22
+ .kn { color: #000000; font-weight: bold } /* Keyword.Namespace */
23
+ .kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */
24
+ .kr { color: #000000; font-weight: bold } /* Keyword.Reserved */
25
+ .kt { color: #445588; font-weight: bold } /* Keyword.Type */
26
+ .m { color: #009999 } /* Literal.Number */
27
+ .s { color: #d01040 } /* Literal.String */
28
+ .na { color: #008080 } /* Name.Attribute */
29
+ .nb { color: #0086B3 } /* Name.Builtin */
30
+ .nc { color: #445588; font-weight: bold } /* Name.Class */
31
+ .no { color: #008080 } /* Name.Constant */
32
+ .nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */
33
+ .ni { color: #800080 } /* Name.Entity */
34
+ .ne { color: #990000; font-weight: bold } /* Name.Exception */
35
+ .nf { color: #990000; font-weight: bold } /* Name.Function */
36
+ .nl { color: #990000; font-weight: bold } /* Name.Label */
37
+ .nn { color: #555555 } /* Name.Namespace */
38
+ .nt { color: #000080 } /* Name.Tag */
39
+ .nv { color: #008080 } /* Name.Variable */
40
+ .ow { color: #000000; font-weight: bold } /* Operator.Word */
41
+ .w { color: #bbbbbb } /* Text.Whitespace */
42
+ .mf { color: #009999 } /* Literal.Number.Float */
43
+ .mh { color: #009999 } /* Literal.Number.Hex */
44
+ .mi { color: #009999 } /* Literal.Number.Integer */
45
+ .mo { color: #009999 } /* Literal.Number.Oct */
46
+ .sb { color: #d01040 } /* Literal.String.Backtick */
47
+ .sc { color: #d01040 } /* Literal.String.Char */
48
+ .sd { color: #d01040 } /* Literal.String.Doc */
49
+ .s2 { color: #d01040 } /* Literal.String.Double */
50
+ .se { color: #d01040 } /* Literal.String.Escape */
51
+ .sh { color: #d01040 } /* Literal.String.Heredoc */
52
+ .si { color: #d01040 } /* Literal.String.Interpol */
53
+ .sx { color: #d01040 } /* Literal.String.Other */
54
+ .sr { color: #009926 } /* Literal.String.Regex */
55
+ .s1 { color: #d01040 } /* Literal.String.Single */
56
+ .ss { color: #990073 } /* Literal.String.Symbol */
57
+ .bp { color: #999999 } /* Name.Builtin.Pseudo */
58
+ .vc { color: #008080 } /* Name.Variable.Class */
59
+ .vg { color: #008080 } /* Name.Variable.Global */
60
+ .vi { color: #008080 } /* Name.Variable.Instance */
61
+ .il { color: #009999 } /* Literal.Number.Integer.Long */
@@ -0,0 +1,61 @@
1
+ .codehilite .hll { background-color: #ffffcc }
2
+ .codehilite .c { color: #0099FF; font-style: italic } /* Comment */
3
+ .codehilite .err { color: #AA0000; background-color: #FFAAAA } /* Error */
4
+ .codehilite .k { color: #006699; font-weight: bold } /* Keyword */
5
+ .codehilite .o { color: #555555 } /* Operator */
6
+ .codehilite .cm { color: #0099FF; font-style: italic } /* Comment.Multiline */
7
+ .codehilite .cp { color: #009999 } /* Comment.Preproc */
8
+ .codehilite .c1 { color: #0099FF; font-style: italic } /* Comment.Single */
9
+ .codehilite .cs { color: #0099FF; font-weight: bold; font-style: italic } /* Comment.Special */
10
+ .codehilite .gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */
11
+ .codehilite .ge { font-style: italic } /* Generic.Emph */
12
+ .codehilite .gr { color: #FF0000 } /* Generic.Error */
13
+ .codehilite .gh { color: #003300; font-weight: bold } /* Generic.Heading */
14
+ .codehilite .gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */
15
+ .codehilite .go { color: #AAAAAA } /* Generic.Output */
16
+ .codehilite .gp { color: #000099; font-weight: bold } /* Generic.Prompt */
17
+ .codehilite .gs { font-weight: bold } /* Generic.Strong */
18
+ .codehilite .gu { color: #003300; font-weight: bold } /* Generic.Subheading */
19
+ .codehilite .gt { color: #99CC66 } /* Generic.Traceback */
20
+ .codehilite .kc { color: #006699; font-weight: bold } /* Keyword.Constant */
21
+ .codehilite .kd { color: #006699; font-weight: bold } /* Keyword.Declaration */
22
+ .codehilite .kn { color: #006699; font-weight: bold } /* Keyword.Namespace */
23
+ .codehilite .kp { color: #006699 } /* Keyword.Pseudo */
24
+ .codehilite .kr { color: #006699; font-weight: bold } /* Keyword.Reserved */
25
+ .codehilite .kt { color: #007788; font-weight: bold } /* Keyword.Type */
26
+ .codehilite .m { color: #FF6600 } /* Literal.Number */
27
+ .codehilite .s { color: #CC3300 } /* Literal.String */
28
+ .codehilite .na { color: #330099 } /* Name.Attribute */
29
+ .codehilite .nb { color: #336666 } /* Name.Builtin */
30
+ .codehilite .nc { color: #00AA88; font-weight: bold } /* Name.Class */
31
+ .codehilite .no { color: #336600 } /* Name.Constant */
32
+ .codehilite .nd { color: #9999FF } /* Name.Decorator */
33
+ .codehilite .ni { color: #999999; font-weight: bold } /* Name.Entity */
34
+ .codehilite .ne { color: #CC0000; font-weight: bold } /* Name.Exception */
35
+ .codehilite .nf { color: #CC00FF } /* Name.Function */
36
+ .codehilite .nl { color: #9999FF } /* Name.Label */
37
+ .codehilite .nn { color: #00CCFF; font-weight: bold } /* Name.Namespace */
38
+ .codehilite .nt { color: #330099; font-weight: bold } /* Name.Tag */
39
+ .codehilite .nv { color: #003333 } /* Name.Variable */
40
+ .codehilite .ow { color: #000000; font-weight: bold } /* Operator.Word */
41
+ .codehilite .w { color: #bbbbbb } /* Text.Whitespace */
42
+ .codehilite .mf { color: #FF6600 } /* Literal.Number.Float */
43
+ .codehilite .mh { color: #FF6600 } /* Literal.Number.Hex */
44
+ .codehilite .mi { color: #FF6600 } /* Literal.Number.Integer */
45
+ .codehilite .mo { color: #FF6600 } /* Literal.Number.Oct */
46
+ .codehilite .sb { color: #CC3300 } /* Literal.String.Backtick */
47
+ .codehilite .sc { color: #CC3300 } /* Literal.String.Char */
48
+ .codehilite .sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */
49
+ .codehilite .s2 { color: #CC3300 } /* Literal.String.Double */
50
+ .codehilite .se { color: #CC3300; font-weight: bold } /* Literal.String.Escape */
51
+ .codehilite .sh { color: #CC3300 } /* Literal.String.Heredoc */
52
+ .codehilite .si { color: #AA0000 } /* Literal.String.Interpol */
53
+ .codehilite .sx { color: #CC3300 } /* Literal.String.Other */
54
+ .codehilite .sr { color: #33AAAA } /* Literal.String.Regex */
55
+ .codehilite .s1 { color: #CC3300 } /* Literal.String.Single */
56
+ .codehilite .ss { color: #FFCC33 } /* Literal.String.Symbol */
57
+ .codehilite .bp { color: #336666 } /* Name.Builtin.Pseudo */
58
+ .codehilite .vc { color: #003333 } /* Name.Variable.Class */
59
+ .codehilite .vg { color: #003333 } /* Name.Variable.Global */
60
+ .codehilite .vi { color: #003333 } /* Name.Variable.Instance */
61
+ .codehilite .il { color: #FF6600 } /* Literal.Number.Integer.Long */
@@ -0,0 +1,59 @@
1
+ .codehilite .hll { background-color: #49483e }
2
+ .codehilite .c { color: #75715e } /* Comment */
3
+ .codehilite .err { color: #960050; background-color: #1e0010 } /* Error */
4
+ .codehilite .k { color: #66d9ef } /* Keyword */
5
+ .codehilite .l { color: #ae81ff } /* Literal */
6
+ .codehilite .n { color: #f8f8f2 } /* Name */
7
+ .codehilite .o { color: #f92672 } /* Operator */
8
+ .codehilite .p { color: #f8f8f2 } /* Punctuation */
9
+ .codehilite .cm { color: #75715e } /* Comment.Multiline */
10
+ .codehilite .cp { color: #75715e } /* Comment.Preproc */
11
+ .codehilite .c1 { color: #75715e } /* Comment.Single */
12
+ .codehilite .cs { color: #75715e } /* Comment.Special */
13
+ .codehilite .ge { font-style: italic } /* Generic.Emph */
14
+ .codehilite .gs { font-weight: bold } /* Generic.Strong */
15
+ .codehilite .kc { color: #66d9ef } /* Keyword.Constant */
16
+ .codehilite .kd { color: #66d9ef } /* Keyword.Declaration */
17
+ .codehilite .kn { color: #f92672 } /* Keyword.Namespace */
18
+ .codehilite .kp { color: #66d9ef } /* Keyword.Pseudo */
19
+ .codehilite .kr { color: #66d9ef } /* Keyword.Reserved */
20
+ .codehilite .kt { color: #66d9ef } /* Keyword.Type */
21
+ .codehilite .ld { color: #e6db74 } /* Literal.Date */
22
+ .codehilite .m { color: #ae81ff } /* Literal.Number */
23
+ .codehilite .s { color: #e6db74 } /* Literal.String */
24
+ .codehilite .na { color: #a6e22e } /* Name.Attribute */
25
+ .codehilite .nb { color: #f8f8f2 } /* Name.Builtin */
26
+ .codehilite .nc { color: #a6e22e } /* Name.Class */
27
+ .codehilite .no { color: #66d9ef } /* Name.Constant */
28
+ .codehilite .nd { color: #a6e22e } /* Name.Decorator */
29
+ .codehilite .ni { color: #f8f8f2 } /* Name.Entity */
30
+ .codehilite .ne { color: #a6e22e } /* Name.Exception */
31
+ .codehilite .nf { color: #a6e22e } /* Name.Function */
32
+ .codehilite .nl { color: #f8f8f2 } /* Name.Label */
33
+ .codehilite .nn { color: #f8f8f2 } /* Name.Namespace */
34
+ .codehilite .nx { color: #a6e22e } /* Name.Other */
35
+ .codehilite .py { color: #f8f8f2 } /* Name.Property */
36
+ .codehilite .nt { color: #f92672 } /* Name.Tag */
37
+ .codehilite .nv { color: #f8f8f2 } /* Name.Variable */
38
+ .codehilite .ow { color: #f92672 } /* Operator.Word */
39
+ .codehilite .w { color: #f8f8f2 } /* Text.Whitespace */
40
+ .codehilite .mf { color: #ae81ff } /* Literal.Number.Float */
41
+ .codehilite .mh { color: #ae81ff } /* Literal.Number.Hex */
42
+ .codehilite .mi { color: #ae81ff } /* Literal.Number.Integer */
43
+ .codehilite .mo { color: #ae81ff } /* Literal.Number.Oct */
44
+ .codehilite .sb { color: #e6db74 } /* Literal.String.Backtick */
45
+ .codehilite .sc { color: #e6db74 } /* Literal.String.Char */
46
+ .codehilite .sd { color: #e6db74 } /* Literal.String.Doc */
47
+ .codehilite .s2 { color: #e6db74 } /* Literal.String.Double */
48
+ .codehilite .se { color: #ae81ff } /* Literal.String.Escape */
49
+ .codehilite .sh { color: #e6db74 } /* Literal.String.Heredoc */
50
+ .codehilite .si { color: #e6db74 } /* Literal.String.Interpol */
51
+ .codehilite .sx { color: #e6db74 } /* Literal.String.Other */
52
+ .codehilite .sr { color: #e6db74 } /* Literal.String.Regex */
53
+ .codehilite .s1 { color: #e6db74 } /* Literal.String.Single */
54
+ .codehilite .ss { color: #e6db74 } /* Literal.String.Symbol */
55
+ .codehilite .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
56
+ .codehilite .vc { color: #f8f8f2 } /* Name.Variable.Class */
57
+ .codehilite .vg { color: #f8f8f2 } /* Name.Variable.Global */
58
+ .codehilite .vi { color: #f8f8f2 } /* Name.Variable.Instance */
59
+ .codehilite .il { color: #ae81ff } /* Literal.Number.Integer.Long */
@@ -0,0 +1,61 @@
1
+ .codehilite .hll { background-color: #ffffcc }
2
+ .codehilite .c { color: #606060; font-style: italic } /* Comment */
3
+ .codehilite .err { color: #F00000; background-color: #F0A0A0 } /* Error */
4
+ .codehilite .k { color: #208090; font-weight: bold } /* Keyword */
5
+ .codehilite .o { color: #303030 } /* Operator */
6
+ .codehilite .cm { color: #606060; font-style: italic } /* Comment.Multiline */
7
+ .codehilite .cp { color: #507090 } /* Comment.Preproc */
8
+ .codehilite .c1 { color: #606060; font-style: italic } /* Comment.Single */
9
+ .codehilite .cs { color: #c00000; font-weight: bold; font-style: italic } /* Comment.Special */
10
+ .codehilite .gd { color: #A00000 } /* Generic.Deleted */
11
+ .codehilite .ge { font-style: italic } /* Generic.Emph */
12
+ .codehilite .gr { color: #FF0000 } /* Generic.Error */
13
+ .codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */
14
+ .codehilite .gi { color: #00A000 } /* Generic.Inserted */
15
+ .codehilite .go { color: #808080 } /* Generic.Output */
16
+ .codehilite .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
17
+ .codehilite .gs { font-weight: bold } /* Generic.Strong */
18
+ .codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
19
+ .codehilite .gt { color: #0040D0 } /* Generic.Traceback */
20
+ .codehilite .kc { color: #208090; font-weight: bold } /* Keyword.Constant */
21
+ .codehilite .kd { color: #208090; font-weight: bold } /* Keyword.Declaration */
22
+ .codehilite .kn { color: #208090; font-weight: bold } /* Keyword.Namespace */
23
+ .codehilite .kp { color: #0080f0; font-weight: bold } /* Keyword.Pseudo */
24
+ .codehilite .kr { color: #208090; font-weight: bold } /* Keyword.Reserved */
25
+ .codehilite .kt { color: #6060f0; font-weight: bold } /* Keyword.Type */
26
+ .codehilite .m { color: #6000E0; font-weight: bold } /* Literal.Number */
27
+ .codehilite .s { background-color: #e0e0ff } /* Literal.String */
28
+ .codehilite .na { color: #000070 } /* Name.Attribute */
29
+ .codehilite .nb { color: #007020 } /* Name.Builtin */
30
+ .codehilite .nc { color: #e090e0; font-weight: bold } /* Name.Class */
31
+ .codehilite .no { color: #50e0d0; font-weight: bold } /* Name.Constant */
32
+ .codehilite .nd { color: #505050; font-weight: bold } /* Name.Decorator */
33
+ .codehilite .ni { color: #800000 } /* Name.Entity */
34
+ .codehilite .ne { color: #F00000; font-weight: bold } /* Name.Exception */
35
+ .codehilite .nf { color: #50e0d0; font-weight: bold } /* Name.Function */
36
+ .codehilite .nl { color: #907000; font-weight: bold } /* Name.Label */
37
+ .codehilite .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
38
+ .codehilite .nt { color: #007000 } /* Name.Tag */
39
+ .codehilite .nv { color: #003060 } /* Name.Variable */
40
+ .codehilite .ow { color: #000000; font-weight: bold } /* Operator.Word */
41
+ .codehilite .w { color: #bbbbbb } /* Text.Whitespace */
42
+ .codehilite .mf { color: #6000E0; font-weight: bold } /* Literal.Number.Float */
43
+ .codehilite .mh { color: #005080; font-weight: bold } /* Literal.Number.Hex */
44
+ .codehilite .mi { color: #6060f0; font-weight: bold } /* Literal.Number.Integer */
45
+ .codehilite .mo { color: #4000E0; font-weight: bold } /* Literal.Number.Oct */
46
+ .codehilite .sb { background-color: #e0e0ff } /* Literal.String.Backtick */
47
+ .codehilite .sc { color: #8080F0 } /* Literal.String.Char */
48
+ .codehilite .sd { color: #D04020 } /* Literal.String.Doc */
49
+ .codehilite .s2 { background-color: #e0e0ff } /* Literal.String.Double */
50
+ .codehilite .se { color: #606060; font-weight: bold; background-color: #e0e0ff } /* Literal.String.Escape */
51
+ .codehilite .sh { background-color: #e0e0ff } /* Literal.String.Heredoc */
52
+ .codehilite .si { background-color: #e0e0e0 } /* Literal.String.Interpol */
53
+ .codehilite .sx { color: #f08080; background-color: #e0e0ff } /* Literal.String.Other */
54
+ .codehilite .sr { color: #000000; background-color: #e0e0ff } /* Literal.String.Regex */
55
+ .codehilite .s1 { background-color: #e0e0ff } /* Literal.String.Single */
56
+ .codehilite .ss { color: #f0c080 } /* Literal.String.Symbol */
57
+ .codehilite .bp { color: #007020 } /* Name.Builtin.Pseudo */
58
+ .codehilite .vc { color: #c0c0f0 } /* Name.Variable.Class */
59
+ .codehilite .vg { color: #f08040 } /* Name.Variable.Global */
60
+ .codehilite .vi { color: #a0a0f0 } /* Name.Variable.Instance */
61
+ .codehilite .il { color: #6060f0; font-weight: bold } /* Literal.Number.Integer.Long */
@@ -0,0 +1,69 @@
1
+ .codehilite .hll { background-color: #404040 }
2
+ .codehilite .c { color: #999999; font-style: italic } /* Comment */
3
+ .codehilite .err { color: #a61717; background-color: #e3d2d2 } /* Error */
4
+ .codehilite .g { color: #d0d0d0 } /* Generic */
5
+ .codehilite .k { color: #6ab825; font-weight: bold } /* Keyword */
6
+ .codehilite .l { color: #d0d0d0 } /* Literal */
7
+ .codehilite .n { color: #d0d0d0 } /* Name */
8
+ .codehilite .o { color: #d0d0d0 } /* Operator */
9
+ .codehilite .x { color: #d0d0d0 } /* Other */
10
+ .codehilite .p { color: #d0d0d0 } /* Punctuation */
11
+ .codehilite .cm { color: #999999; font-style: italic } /* Comment.Multiline */
12
+ .codehilite .cp { color: #cd2828; font-weight: bold } /* Comment.Preproc */
13
+ .codehilite .c1 { color: #999999; font-style: italic } /* Comment.Single */
14
+ .codehilite .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */
15
+ .codehilite .gd { color: #d22323 } /* Generic.Deleted */
16
+ .codehilite .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */
17
+ .codehilite .gr { color: #d22323 } /* Generic.Error */
18
+ .codehilite .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
19
+ .codehilite .gi { color: #589819 } /* Generic.Inserted */
20
+ .codehilite .go { color: #cccccc } /* Generic.Output */
21
+ .codehilite .gp { color: #aaaaaa } /* Generic.Prompt */
22
+ .codehilite .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */
23
+ .codehilite .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */
24
+ .codehilite .gt { color: #d22323 } /* Generic.Traceback */
25
+ .codehilite .kc { color: #6ab825; font-weight: bold } /* Keyword.Constant */
26
+ .codehilite .kd { color: #6ab825; font-weight: bold } /* Keyword.Declaration */
27
+ .codehilite .kn { color: #6ab825; font-weight: bold } /* Keyword.Namespace */
28
+ .codehilite .kp { color: #6ab825 } /* Keyword.Pseudo */
29
+ .codehilite .kr { color: #6ab825; font-weight: bold } /* Keyword.Reserved */
30
+ .codehilite .kt { color: #6ab825; font-weight: bold } /* Keyword.Type */
31
+ .codehilite .ld { color: #d0d0d0 } /* Literal.Date */
32
+ .codehilite .m { color: #3677a9 } /* Literal.Number */
33
+ .codehilite .s { color: #ed9d13 } /* Literal.String */
34
+ .codehilite .na { color: #bbbbbb } /* Name.Attribute */
35
+ .codehilite .nb { color: #24909d } /* Name.Builtin */
36
+ .codehilite .nc { color: #447fcf; text-decoration: underline } /* Name.Class */
37
+ .codehilite .no { color: #40ffff } /* Name.Constant */
38
+ .codehilite .nd { color: #ffa500 } /* Name.Decorator */
39
+ .codehilite .ni { color: #d0d0d0 } /* Name.Entity */
40
+ .codehilite .ne { color: #bbbbbb } /* Name.Exception */
41
+ .codehilite .nf { color: #447fcf } /* Name.Function */
42
+ .codehilite .nl { color: #d0d0d0 } /* Name.Label */
43
+ .codehilite .nn { color: #447fcf; text-decoration: underline } /* Name.Namespace */
44
+ .codehilite .nx { color: #d0d0d0 } /* Name.Other */
45
+ .codehilite .py { color: #d0d0d0 } /* Name.Property */
46
+ .codehilite .nt { color: #6ab825; font-weight: bold } /* Name.Tag */
47
+ .codehilite .nv { color: #40ffff } /* Name.Variable */
48
+ .codehilite .ow { color: #6ab825; font-weight: bold } /* Operator.Word */
49
+ .codehilite .w { color: #666666 } /* Text.Whitespace */
50
+ .codehilite .mf { color: #3677a9 } /* Literal.Number.Float */
51
+ .codehilite .mh { color: #3677a9 } /* Literal.Number.Hex */
52
+ .codehilite .mi { color: #3677a9 } /* Literal.Number.Integer */
53
+ .codehilite .mo { color: #3677a9 } /* Literal.Number.Oct */
54
+ .codehilite .sb { color: #ed9d13 } /* Literal.String.Backtick */
55
+ .codehilite .sc { color: #ed9d13 } /* Literal.String.Char */
56
+ .codehilite .sd { color: #ed9d13 } /* Literal.String.Doc */
57
+ .codehilite .s2 { color: #ed9d13 } /* Literal.String.Double */
58
+ .codehilite .se { color: #ed9d13 } /* Literal.String.Escape */
59
+ .codehilite .sh { color: #ed9d13 } /* Literal.String.Heredoc */
60
+ .codehilite .si { color: #ed9d13 } /* Literal.String.Interpol */
61
+ .codehilite .sx { color: #ffa500 } /* Literal.String.Other */
62
+ .codehilite .sr { color: #ed9d13 } /* Literal.String.Regex */
63
+ .codehilite .s1 { color: #ed9d13 } /* Literal.String.Single */
64
+ .codehilite .ss { color: #ed9d13 } /* Literal.String.Symbol */
65
+ .codehilite .bp { color: #24909d } /* Name.Builtin.Pseudo */
66
+ .codehilite .vc { color: #40ffff } /* Name.Variable.Class */
67
+ .codehilite .vg { color: #40ffff } /* Name.Variable.Global */
68
+ .codehilite .vi { color: #40ffff } /* Name.Variable.Instance */
69
+ .codehilite .il { color: #3677a9 } /* Literal.Number.Integer.Long */
@@ -0,0 +1,60 @@
1
+ .codehilite .hll { background-color: #ffffcc }
2
+ .codehilite .c { color: #888888 } /* Comment */
3
+ .codehilite .err { color: #a61717; background-color: #e3d2d2 } /* Error */
4
+ .codehilite .k { color: #008800; font-weight: bold } /* Keyword */
5
+ .codehilite .cm { color: #888888 } /* Comment.Multiline */
6
+ .codehilite .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
7
+ .codehilite .c1 { color: #888888 } /* Comment.Single */
8
+ .codehilite .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
9
+ .codehilite .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
10
+ .codehilite .ge { font-style: italic } /* Generic.Emph */
11
+ .codehilite .gr { color: #aa0000 } /* Generic.Error */
12
+ .codehilite .gh { color: #303030 } /* Generic.Heading */
13
+ .codehilite .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
14
+ .codehilite .go { color: #888888 } /* Generic.Output */
15
+ .codehilite .gp { color: #555555 } /* Generic.Prompt */
16
+ .codehilite .gs { font-weight: bold } /* Generic.Strong */
17
+ .codehilite .gu { color: #606060 } /* Generic.Subheading */
18
+ .codehilite .gt { color: #aa0000 } /* Generic.Traceback */
19
+ .codehilite .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
20
+ .codehilite .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
21
+ .codehilite .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
22
+ .codehilite .kp { color: #008800 } /* Keyword.Pseudo */
23
+ .codehilite .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
24
+ .codehilite .kt { color: #888888; font-weight: bold } /* Keyword.Type */
25
+ .codehilite .m { color: #0000DD; font-weight: bold } /* Literal.Number */
26
+ .codehilite .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
27
+ .codehilite .na { color: #336699 } /* Name.Attribute */
28
+ .codehilite .nb { color: #003388 } /* Name.Builtin */
29
+ .codehilite .nc { color: #bb0066; font-weight: bold } /* Name.Class */
30
+ .codehilite .no { color: #003366; font-weight: bold } /* Name.Constant */
31
+ .codehilite .nd { color: #555555 } /* Name.Decorator */
32
+ .codehilite .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
33
+ .codehilite .nf { color: #0066bb; font-weight: bold } /* Name.Function */
34
+ .codehilite .nl { color: #336699; font-style: italic } /* Name.Label */
35
+ .codehilite .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
36
+ .codehilite .py { color: #336699; font-weight: bold } /* Name.Property */
37
+ .codehilite .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
38
+ .codehilite .nv { color: #336699 } /* Name.Variable */
39
+ .codehilite .ow { color: #008800 } /* Operator.Word */
40
+ .codehilite .w { color: #bbbbbb } /* Text.Whitespace */
41
+ .codehilite .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
42
+ .codehilite .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
43
+ .codehilite .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
44
+ .codehilite .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
45
+ .codehilite .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
46
+ .codehilite .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
47
+ .codehilite .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */
48
+ .codehilite .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */
49
+ .codehilite .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */
50
+ .codehilite .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */
51
+ .codehilite .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */
52
+ .codehilite .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */
53
+ .codehilite .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */
54
+ .codehilite .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
55
+ .codehilite .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */
56
+ .codehilite .bp { color: #003388 } /* Name.Builtin.Pseudo */
57
+ .codehilite .vc { color: #336699 } /* Name.Variable.Class */
58
+ .codehilite .vg { color: #dd7700 } /* Name.Variable.Global */
59
+ .codehilite .vi { color: #3333bb } /* Name.Variable.Instance */
60
+ .codehilite .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */