├── tools ├── Gemfile ├── Gemfile.lock ├── make-demos ├── templates │ ├── demo-list.html │ └── demo-single.html └── make-stylesheet ├── UNLICENSE.txt ├── index.html ├── README.md ├── original-stylesheets ├── vs.css ├── bw.css ├── borland.css ├── solarized-dark.css ├── solarized-light.css ├── monokai.css ├── autumn.css ├── perldoc.css ├── trac.css ├── default.css ├── emacs.css ├── friendly.css ├── manni.css ├── vim.css ├── colorful.css ├── murphy.css ├── pastie.css ├── native.css ├── tango.css └── fruity.css ├── solarized-dark.css ├── solarized-light.css ├── monokai.css ├── autumn.css ├── demos ├── trac-converted.html ├── vim-converted.html ├── autumn-converted.html ├── fruity-converted.html ├── native-converted.html ├── colorful-converted.html ├── monokai-converted.html ├── perldoc-converted.html ├── solarized-dark-converted.html ├── trac-original.html ├── vim-original.html ├── autumn-original.html ├── fruity-original.html ├── native-original.html ├── solarized-light-converted.html ├── colorful-original.html ├── monokai-original.html ├── perldoc-original.html ├── solarized-dark-original.html └── solarized-light-original.html ├── perldoc.css ├── trac.css ├── vim.css ├── colorful.css ├── native.css └── fruity.css /tools/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'css_parser' 4 | gem 'wcag_color_contrast' 5 | gem 'chroma' 6 | -------------------------------------------------------------------------------- /tools/Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | chroma (0.2.0) 5 | 6 | PLATFORMS 7 | ruby 8 | 9 | DEPENDENCIES 10 | chroma 11 | 12 | BUNDLED WITH 13 | 1.14.6 14 | -------------------------------------------------------------------------------- /tools/make-demos: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | demos = [ 4 | "autumn", 5 | "colorful", 6 | "fruity", 7 | "monokai", 8 | "native", 9 | "perldoc", 10 | "solarized-dark", 11 | "solarized-light", 12 | "trac", 13 | "vim" 14 | ] 15 | 16 | demo_single_template = File.read('templates/demo-single.html') 17 | demo_list_html = File.read('templates/demo-list.html') 18 | 19 | demo_list = File.new("../index.html", "w") 20 | demo_list_find = '' 21 | demo_list_replace = '' 22 | 23 | demos.each do |demo| 24 | out = File.new("../demos/#{demo}-converted.html", "w") 25 | out.puts "" 26 | out.puts demo_single_template 27 | out.close 28 | 29 | out = File.new("../demos/#{demo}-original.html", "w") 30 | out.puts "" 31 | out.puts demo_single_template 32 | out.close 33 | 34 | demo_list_replace += "

#{demo}.css

" 35 | demo_list_replace += "" 36 | end 37 | 38 | demo_list_html.sub! demo_list_find, demo_list_replace 39 | demo_list.puts demo_list_html 40 | demo_list.close 41 | -------------------------------------------------------------------------------- /tools/templates/demo-list.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | pygments-high-contrast-stylesheets 4 | 5 | 13 | 14 | 15 |

pygments-high-contrast-stylesheets

16 |

A hard fork of pygments-css with WCAG AA passing stylesheets.

17 |

View Project on GitHub

18 |

Why?

19 |

When you're choosing a theme for your personal IDE feel free to choose whatever you'd like. But when you're publishing to the web, keep in mind that you're not the only one reading the code using the selected theme.

20 |

These high contrast themes pass WCAG AA's standards, making them more friendly to the large segment of the population with color vision deficiency.

21 |

Demos

22 | 23 |

View Project on GitHub

24 | 25 | 26 | -------------------------------------------------------------------------------- /UNLICENSE.txt: -------------------------------------------------------------------------------- 1 | This is free and unencumbered software released into the public domain. 2 | 3 | Anyone is free to copy, modify, publish, use, compile, sell, or 4 | distribute this software, either in source code form or as a compiled 5 | binary, for any purpose, commercial or non-commercial, and by any 6 | means. 7 | 8 | In jurisdictions that recognize copyright laws, the author or authors 9 | of this software dedicate any and all copyright interest in the 10 | software to the public domain. We make this dedication for the benefit 11 | of the public at large and to the detriment of our heirs and 12 | successors. We intend this dedication to be an overt act of 13 | relinquishment in perpetuity of all present and future rights to this 14 | software under copyright law. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | For more information, please refer to 25 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | pygments-high-contrast-stylesheets 4 | 5 | 13 | 14 | 15 |

pygments-high-contrast-stylesheets

16 |

A hard fork of pygments-css with WCAG AA passing stylesheets.

17 |

View Project on GitHub

18 |

Why?

19 |

When you're choosing a theme for your personal IDE feel free to choose whatever you'd like. But when you're publishing to the web, keep in mind that you're not the only one reading the code using the selected theme.

20 |

These high contrast themes pass WCAG AA's standards, making them more friendly to the large segment of the population with color vision deficiency.

21 |

Demos

22 |

autumn.css

colorful.css

fruity.css

monokai.css

native.css

perldoc.css

solarized-dark.css

solarized-light.css

trac.css

vim.css

23 |

View Project on GitHub

24 | 25 | 26 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # pygments-high-contrast-stylesheets 2 | 3 | A hard fork of [pygments-css](https://github.com/richleland/pygments-css) with WCAG AA passing stylesheets. 4 | 5 | ## Why? 6 | 7 | When you're choosing a theme for your personal IDE feel free to choose whatever you'd like. But when you're publishing to the web, keep in mind that you're not the only one reading the code using the selected theme. 8 | 9 | These high contrast themes pass WCAG AA's standards, making them more friendly to the large segment of the population with color vision deficiency. 10 | 11 | ## Examples 12 | 13 | ### vim.css 14 | 15 | **Before** 16 | 17 | 18 | 19 | **After** 20 | 21 | 22 | 23 | [View demos for all stylesheets here](https://maxchadwick.xyz/pygments-high-contrast-stylesheets/) 24 | 25 | ## Contributing 26 | 27 | ### Converting a stylesheet 28 | 29 | Original pygments stylesheets are automatically converted by the `tools/make-stylesheet` Ruby script. 30 | 31 | In order to convert a new stylesheet, first add the original to the `original-stylesheets` directory. 32 | 33 | Next you'll need to install the gems `make-stylesheet` uses to convert the original. Do this from within the `tools` directory: 34 | 35 | 36 | ``` 37 | bundle install 38 | ``` 39 | 40 | Then invoke `make-stylesheet`, first passing it the path to the original stylesheet, followed by the destination location. Converted stylesheets should be placed in the root directory of the project. 41 | 42 | 43 | ``` 44 | ./make-stylesheet ../original-stylesheets/new-stylesheet.css ../new-stylesheet.css 45 | ``` 46 | 47 | ### Updating the demos 48 | 49 | After you've converted a stylesheet, you should update the demos on index.html. This page is dynamically generated by the `tools/make-demos` script. 50 | 51 | At the top of the file, there's an array of stylesheet file names that are added to the demos... 52 | 53 | ``` 54 | demos = [ 55 | "autumn", 56 | "colorful", 57 | "fruity", 58 | ... 59 | ``` 60 | 61 | Add your stylesheet to the list. 62 | 63 | Then invoke `make-demos`. 64 | 65 | ``` 66 | ./make-demos 67 | ``` 68 | 69 | Now you can commit your changes and submit a pull request! -------------------------------------------------------------------------------- /original-stylesheets/vs.css: -------------------------------------------------------------------------------- 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 */ 39 | -------------------------------------------------------------------------------- /original-stylesheets/bw.css: -------------------------------------------------------------------------------- 1 | .highlight .hll { background-color: #ffffcc } 2 | .highlight { background: #ffffff; } 3 | .highlight .c { font-style: italic } /* Comment */ 4 | .highlight .err { border: 1px solid #FF0000 } /* Error */ 5 | .highlight .k { font-weight: bold } /* Keyword */ 6 | .highlight .ch { font-style: italic } /* Comment.Hashbang */ 7 | .highlight .cm { font-style: italic } /* Comment.Multiline */ 8 | .highlight .cpf { font-style: italic } /* Comment.PreprocFile */ 9 | .highlight .c1 { font-style: italic } /* Comment.Single */ 10 | .highlight .cs { font-style: italic } /* Comment.Special */ 11 | .highlight .ge { font-style: italic } /* Generic.Emph */ 12 | .highlight .gh { font-weight: bold } /* Generic.Heading */ 13 | .highlight .gp { font-weight: bold } /* Generic.Prompt */ 14 | .highlight .gs { font-weight: bold } /* Generic.Strong */ 15 | .highlight .gu { font-weight: bold } /* Generic.Subheading */ 16 | .highlight .kc { font-weight: bold } /* Keyword.Constant */ 17 | .highlight .kd { font-weight: bold } /* Keyword.Declaration */ 18 | .highlight .kn { font-weight: bold } /* Keyword.Namespace */ 19 | .highlight .kr { font-weight: bold } /* Keyword.Reserved */ 20 | .highlight .s { font-style: italic } /* Literal.String */ 21 | .highlight .nc { font-weight: bold } /* Name.Class */ 22 | .highlight .ni { font-weight: bold } /* Name.Entity */ 23 | .highlight .ne { font-weight: bold } /* Name.Exception */ 24 | .highlight .nn { font-weight: bold } /* Name.Namespace */ 25 | .highlight .nt { font-weight: bold } /* Name.Tag */ 26 | .highlight .ow { font-weight: bold } /* Operator.Word */ 27 | .highlight .sa { font-style: italic } /* Literal.String.Affix */ 28 | .highlight .sb { font-style: italic } /* Literal.String.Backtick */ 29 | .highlight .sc { font-style: italic } /* Literal.String.Char */ 30 | .highlight .dl { font-style: italic } /* Literal.String.Delimiter */ 31 | .highlight .sd { font-style: italic } /* Literal.String.Doc */ 32 | .highlight .s2 { font-style: italic } /* Literal.String.Double */ 33 | .highlight .se { font-weight: bold; font-style: italic } /* Literal.String.Escape */ 34 | .highlight .sh { font-style: italic } /* Literal.String.Heredoc */ 35 | .highlight .si { font-weight: bold; font-style: italic } /* Literal.String.Interpol */ 36 | .highlight .sx { font-style: italic } /* Literal.String.Other */ 37 | .highlight .sr { font-style: italic } /* Literal.String.Regex */ 38 | .highlight .s1 { font-style: italic } /* Literal.String.Single */ 39 | .highlight .ss { font-style: italic } /* Literal.String.Symbol */ 40 | -------------------------------------------------------------------------------- /tools/make-stylesheet: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | # Usage: 4 | # 5 | # ./make-stylesheet ../original-stylesheets/borland.css ../borland.css 6 | # 7 | # Run from within the tools/ directory 8 | 9 | require 'css_parser' 10 | require 'wcag_color_contrast' 11 | require 'chroma' 12 | include CssParser 13 | 14 | parser = CssParser::Parser.new 15 | parser.load_file!(ARGV[0]); 16 | 17 | converted = File.new("#{ARGV[1]}", "w") 18 | 19 | bg_selector = '.highlight' 20 | bg_rules = RuleSet.new(nil, parser.find_by_selector(bg_selector)[0]) 21 | calculator = WCAGColorContrast::Ratio.new 22 | bg_color = bg_rules.get_value('background').chomp(';')[1..-1] 23 | 24 | if !bg_color 25 | bg_color = bg_rules.get_value('background-color').chomp(';')[1..-1] 26 | end 27 | 28 | bg_color_relative_luminance = calculator.relative_luminance(bg_color) 29 | 30 | parser.each_selector do |selector, declarations, specificity| 31 | element_bg_color = bg_color 32 | element_bg_color_relative_luminance = bg_color_relative_luminance 33 | 34 | rule_set = RuleSet.new(selector, declarations) 35 | if selector == bg_selector 36 | converted.puts rule_set.to_s 37 | next 38 | end 39 | color = rule_set.get_value('color').chomp(';')[1..-1] 40 | if !color 41 | converted.puts rule_set.to_s 42 | next 43 | end 44 | 45 | color_relative_luminance = calculator.relative_luminance(color) 46 | 47 | selector_bg_color = rule_set.get_value('background-color').chomp(';')[1..-1] 48 | if selector_bg_color 49 | element_bg_color = selector_bg_color 50 | element_bg_color_relative_luminance = calculator.relative_luminance(element_bg_color) 51 | end 52 | 53 | ratio = calculator.ratio(color, element_bg_color) 54 | 55 | if ratio < 4.5 56 | original = ratio 57 | recommendation = color 58 | while ratio < 4.5 59 | if element_bg_color_relative_luminance < color_relative_luminance 60 | recommendation = recommendation.paint.lighten(1).to_s[1..-1] 61 | else 62 | recommendation = recommendation.paint.darken(1).to_s[1..-1] 63 | end 64 | ratio = calculator.ratio(recommendation, element_bg_color) 65 | end 66 | rule_set.remove_declaration!('color') 67 | rule_set.add_declaration!('color', '#' + recommendation) 68 | puts 'Fixed: ' + selector + 69 | ' | Original Ratio: ' + original.to_s + 70 | ' | Original Color: ' + color + 71 | ' | Background: ' + bg_color + 72 | ' | New Color: ' + recommendation 73 | end 74 | 75 | converted.puts rule_set.to_s 76 | end 77 | 78 | converted.close 79 | -------------------------------------------------------------------------------- /solarized-dark.css: -------------------------------------------------------------------------------- 1 | .highlight { background-color: #002b36; color: #93a1a1; } 2 | .highlight .c { color: #759299; } 3 | .highlight .err { color: #93a1a1; } 4 | .highlight .g { color: #93a1a1; } 5 | .highlight .k { color: #859900; } 6 | .highlight .l { color: #93a1a1; } 7 | .highlight .n { color: #93a1a1; } 8 | .highlight .o { color: #859900; } 9 | .highlight .x { color: #e9662f; } 10 | .highlight .p { color: #93a1a1; } 11 | .highlight .cm { color: #759299; } 12 | .highlight .cp { color: #859900; } 13 | .highlight .c1 { color: #759299; } 14 | .highlight .cs { color: #859900; } 15 | .highlight .gd { color: #2aa198; } 16 | .highlight .ge { color: #93a1a1; font-style: italic; } 17 | .highlight .gr { color: #e8625f; } 18 | .highlight .gh { color: #e9662f; } 19 | .highlight .gi { color: #859900; } 20 | .highlight .go { color: #93a1a1; } 21 | .highlight .gp { color: #93a1a1; } 22 | .highlight .gs { color: #93a1a1; font-weight: bold; } 23 | .highlight .gu { color: #e9662f; } 24 | .highlight .gt { color: #93a1a1; } 25 | .highlight .kc { color: #e9662f; } 26 | .highlight .kd { color: #3294da; } 27 | .highlight .kn { color: #859900; } 28 | .highlight .kp { color: #859900; } 29 | .highlight .kr { color: #3294da; } 30 | .highlight .kt { color: #e8625f; } 31 | .highlight .ld { color: #93a1a1; } 32 | .highlight .m { color: #2aa198; } 33 | .highlight .s { color: #2aa198; } 34 | .highlight .na { color: #93a1a1; } 35 | .highlight .nb { color: #B58900; } 36 | .highlight .nc { color: #3294da; } 37 | .highlight .no { color: #e9662f; } 38 | .highlight .nd { color: #3294da; } 39 | .highlight .ni { color: #e9662f; } 40 | .highlight .ne { color: #e9662f; } 41 | .highlight .nf { color: #3294da; } 42 | .highlight .nl { color: #93a1a1; } 43 | .highlight .nn { color: #93a1a1; } 44 | .highlight .nx { color: #93a1a1; } 45 | .highlight .py { color: #93a1a1; } 46 | .highlight .nt { color: #3294da; } 47 | .highlight .nv { color: #3294da; } 48 | .highlight .ow { color: #859900; } 49 | .highlight .w { color: #93a1a1; } 50 | .highlight .mf { color: #2aa198; } 51 | .highlight .mh { color: #2aa198; } 52 | .highlight .mi { color: #2aa198; } 53 | .highlight .mo { color: #2aa198; } 54 | .highlight .sb { color: #759299; } 55 | .highlight .sc { color: #2aa198; } 56 | .highlight .sd { color: #93a1a1; } 57 | .highlight .s2 { color: #2aa198; } 58 | .highlight .se { color: #e9662f; } 59 | .highlight .sh { color: #93a1a1; } 60 | .highlight .si { color: #2aa198; } 61 | .highlight .sx { color: #2aa198; } 62 | .highlight .sr { color: #e8625f; } 63 | .highlight .s1 { color: #2aa198; } 64 | .highlight .ss { color: #2aa198; } 65 | .highlight .bp { color: #3294da; } 66 | .highlight .vc { color: #3294da; } 67 | .highlight .vg { color: #3294da; } 68 | .highlight .vi { color: #3294da; } 69 | .highlight .il { color: #2aa198; } 70 | -------------------------------------------------------------------------------- /solarized-light.css: -------------------------------------------------------------------------------- 1 | .highlight { background-color: #fdf6e3; color: #586e75; } 2 | .highlight .c { color: #627272; } 3 | .highlight .err { color: #586e75; } 4 | .highlight .g { color: #586e75; } 5 | .highlight .k { color: #677600; } 6 | .highlight .l { color: #586e75; } 7 | .highlight .n { color: #586e75; } 8 | .highlight .o { color: #677600; } 9 | .highlight .x { color: #c14715; } 10 | .highlight .p { color: #586e75; } 11 | .highlight .cm { color: #627272; } 12 | .highlight .cp { color: #677600; } 13 | .highlight .c1 { color: #627272; } 14 | .highlight .cs { color: #677600; } 15 | .highlight .gd { color: #217d74; } 16 | .highlight .ge { color: #586e75; font-style: italic; } 17 | .highlight .gr { color: #d72825; } 18 | .highlight .gh { color: #c14715; } 19 | .highlight .gi { color: #677600; } 20 | .highlight .go { color: #586e75; } 21 | .highlight .gp { color: #586e75; } 22 | .highlight .gs { color: #586e75; font-weight: bold; } 23 | .highlight .gu { color: #c14715; } 24 | .highlight .gt { color: #586e75; } 25 | .highlight .kc { color: #c14715; } 26 | .highlight .kd { color: #1f76b6; } 27 | .highlight .kn { color: #677600; } 28 | .highlight .kp { color: #677600; } 29 | .highlight .kr { color: #1f76b6; } 30 | .highlight .kt { color: #d72825; } 31 | .highlight .ld { color: #586e75; } 32 | .highlight .m { color: #217d74; } 33 | .highlight .s { color: #217d74; } 34 | .highlight .na { color: #586e75; } 35 | .highlight .nb { color: #8d6900; } 36 | .highlight .nc { color: #1f76b6; } 37 | .highlight .no { color: #c14715; } 38 | .highlight .nd { color: #1f76b6; } 39 | .highlight .ni { color: #c14715; } 40 | .highlight .ne { color: #c14715; } 41 | .highlight .nf { color: #1f76b6; } 42 | .highlight .nl { color: #586e75; } 43 | .highlight .nn { color: #586e75; } 44 | .highlight .nx { color: #586e75; } 45 | .highlight .py { color: #586e75; } 46 | .highlight .nt { color: #1f76b6; } 47 | .highlight .nv { color: #1f76b6; } 48 | .highlight .ow { color: #677600; } 49 | .highlight .w { color: #586e75; } 50 | .highlight .mf { color: #217d74; } 51 | .highlight .mh { color: #217d74; } 52 | .highlight .mi { color: #217d74; } 53 | .highlight .mo { color: #217d74; } 54 | .highlight .sb { color: #627272; } 55 | .highlight .sc { color: #217d74; } 56 | .highlight .sd { color: #586e75; } 57 | .highlight .s2 { color: #217d74; } 58 | .highlight .se { color: #c14715; } 59 | .highlight .sh { color: #586e75; } 60 | .highlight .si { color: #217d74; } 61 | .highlight .sx { color: #217d74; } 62 | .highlight .sr { color: #d72825; } 63 | .highlight .s1 { color: #217d74; } 64 | .highlight .ss { color: #217d74; } 65 | .highlight .bp { color: #1f76b6; } 66 | .highlight .vc { color: #1f76b6; } 67 | .highlight .vg { color: #1f76b6; } 68 | .highlight .vi { color: #1f76b6; } 69 | .highlight .il { color: #217d74; } 70 | -------------------------------------------------------------------------------- /monokai.css: -------------------------------------------------------------------------------- 1 | .highlight .hll { background-color: #49483e; } 2 | .highlight { background: #272822; color: #f8f8f2; } 3 | .highlight .c { color: #949076; } 4 | .highlight .err { background-color: #1e0010; color: #eb0083; } 5 | .highlight .k { color: #66d9ef; } 6 | .highlight .l { color: #ae81ff; } 7 | .highlight .n { color: #f8f8f2; } 8 | .highlight .o { color: #f94e8a; } 9 | .highlight .p { color: #f8f8f2; } 10 | .highlight .ch { color: #949076; } 11 | .highlight .cm { color: #949076; } 12 | .highlight .cp { color: #949076; } 13 | .highlight .cpf { color: #949076; } 14 | .highlight .c1 { color: #949076; } 15 | .highlight .cs { color: #949076; } 16 | .highlight .gd { color: #f94e8a; } 17 | .highlight .ge { font-style: italic; } 18 | .highlight .gi { color: #a6e22e; } 19 | .highlight .gs { font-weight: bold; } 20 | .highlight .gu { color: #949076; } 21 | .highlight .kc { color: #66d9ef; } 22 | .highlight .kd { color: #66d9ef; } 23 | .highlight .kn { color: #f94e8a; } 24 | .highlight .kp { color: #66d9ef; } 25 | .highlight .kr { color: #66d9ef; } 26 | .highlight .kt { color: #66d9ef; } 27 | .highlight .ld { color: #e6db74; } 28 | .highlight .m { color: #ae81ff; } 29 | .highlight .s { color: #e6db74; } 30 | .highlight .na { color: #a6e22e; } 31 | .highlight .nb { color: #f8f8f2; } 32 | .highlight .nc { color: #a6e22e; } 33 | .highlight .no { color: #66d9ef; } 34 | .highlight .nd { color: #a6e22e; } 35 | .highlight .ni { color: #f8f8f2; } 36 | .highlight .ne { color: #a6e22e; } 37 | .highlight .nf { color: #a6e22e; } 38 | .highlight .nl { color: #f8f8f2; } 39 | .highlight .nn { color: #f8f8f2; } 40 | .highlight .nx { color: #a6e22e; } 41 | .highlight .py { color: #f8f8f2; } 42 | .highlight .nt { color: #f94e8a; } 43 | .highlight .nv { color: #f8f8f2; } 44 | .highlight .ow { color: #f94e8a; } 45 | .highlight .w { color: #f8f8f2; } 46 | .highlight .mb { color: #ae81ff; } 47 | .highlight .mf { color: #ae81ff; } 48 | .highlight .mh { color: #ae81ff; } 49 | .highlight .mi { color: #ae81ff; } 50 | .highlight .mo { color: #ae81ff; } 51 | .highlight .sa { color: #e6db74; } 52 | .highlight .sb { color: #e6db74; } 53 | .highlight .sc { color: #e6db74; } 54 | .highlight .dl { color: #e6db74; } 55 | .highlight .sd { color: #e6db74; } 56 | .highlight .s2 { color: #e6db74; } 57 | .highlight .se { color: #ae81ff; } 58 | .highlight .sh { color: #e6db74; } 59 | .highlight .si { color: #e6db74; } 60 | .highlight .sx { color: #e6db74; } 61 | .highlight .sr { color: #e6db74; } 62 | .highlight .s1 { color: #e6db74; } 63 | .highlight .ss { color: #e6db74; } 64 | .highlight .bp { color: #f8f8f2; } 65 | .highlight .fm { color: #a6e22e; } 66 | .highlight .vc { color: #f8f8f2; } 67 | .highlight .vg { color: #f8f8f2; } 68 | .highlight .vi { color: #f8f8f2; } 69 | .highlight .vm { color: #f8f8f2; } 70 | .highlight .il { color: #ae81ff; } 71 | -------------------------------------------------------------------------------- /autumn.css: -------------------------------------------------------------------------------- 1 | .highlight .hll { background-color: #ffffcc; } 2 | .highlight { background: #ffffff; } 3 | .highlight .c { font-style: italic; color: #747474; } 4 | .highlight .err { background-color: #FFAAAA; color: #a00000; } 5 | .highlight .k { color: #0000aa; } 6 | .highlight .ch { font-style: italic; color: #747474; } 7 | .highlight .cm { font-style: italic; color: #747474; } 8 | .highlight .cp { color: #4c8317; } 9 | .highlight .cpf { font-style: italic; color: #747474; } 10 | .highlight .c1 { font-style: italic; color: #747474; } 11 | .highlight .cs { color: #0000aa; font-style: italic; } 12 | .highlight .gd { color: #aa0000; } 13 | .highlight .ge { font-style: italic; } 14 | .highlight .gr { color: #aa0000; } 15 | .highlight .gh { color: #000080; font-weight: bold; } 16 | .highlight .gi { color: #008700; } 17 | .highlight .go { color: #767676; } 18 | .highlight .gp { color: #555555; } 19 | .highlight .gs { font-weight: bold; } 20 | .highlight .gu { color: #800080; font-weight: bold; } 21 | .highlight .gt { color: #aa0000; } 22 | .highlight .kc { color: #0000aa; } 23 | .highlight .kd { color: #0000aa; } 24 | .highlight .kn { color: #0000aa; } 25 | .highlight .kp { color: #0000aa; } 26 | .highlight .kr { color: #0000aa; } 27 | .highlight .kt { color: #008282; } 28 | .highlight .m { color: #008080; } 29 | .highlight .s { color: #aa5500; } 30 | .highlight .na { color: #0072eb; } 31 | .highlight .nb { color: #008282; } 32 | .highlight .nc { text-decoration: underline; color: #008700; } 33 | .highlight .no { color: #aa0000; } 34 | .highlight .nd { color: #767676; } 35 | .highlight .ni { color: #880000; font-weight: bold; } 36 | .highlight .nf { color: #008700; } 37 | .highlight .nn { text-decoration: underline; color: #008282; } 38 | .highlight .nt { font-weight: bold; color: #0072eb; } 39 | .highlight .nv { color: #aa0000; } 40 | .highlight .ow { color: #0000aa; } 41 | .highlight .w { color: #767676; } 42 | .highlight .mb { color: #008080; } 43 | .highlight .mf { color: #008080; } 44 | .highlight .mh { color: #008080; } 45 | .highlight .mi { color: #008080; } 46 | .highlight .mo { color: #008080; } 47 | .highlight .sa { color: #aa5500; } 48 | .highlight .sb { color: #aa5500; } 49 | .highlight .sc { color: #aa5500; } 50 | .highlight .dl { color: #aa5500; } 51 | .highlight .sd { color: #aa5500; } 52 | .highlight .s2 { color: #aa5500; } 53 | .highlight .se { color: #aa5500; } 54 | .highlight .sh { color: #aa5500; } 55 | .highlight .si { color: #aa5500; } 56 | .highlight .sx { color: #aa5500; } 57 | .highlight .sr { color: #008080; } 58 | .highlight .s1 { color: #aa5500; } 59 | .highlight .ss { color: #0000aa; } 60 | .highlight .bp { color: #008282; } 61 | .highlight .fm { color: #008700; } 62 | .highlight .vc { color: #aa0000; } 63 | .highlight .vg { color: #aa0000; } 64 | .highlight .vi { color: #aa0000; } 65 | .highlight .vm { color: #aa0000; } 66 | .highlight .il { color: #008080; } 67 | -------------------------------------------------------------------------------- /tools/templates/demo-single.html: -------------------------------------------------------------------------------- 1 | 6 |
require 'twitter_ebooks'
 7 | 
 8 | class MyBot < Ebooks::Bot
 9 |   # Configuration here applies to all MyBots
10 |   def configure
11 | 
12 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
13 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
14 | 
15 |   end
16 | 
17 |   def on_startup
18 |     model = Ebooks::Model.load("model/text.model")
19 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
20 |       tweet(model.make_statement(140))
21 |     end
22 |   end
23 | end
24 | 
25 | # Make a MyBot and attach it to an account
26 | MyBot.new("mage__ebooks") do |bot|
27 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
28 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
29 | end
30 | 
31 | -------------------------------------------------------------------------------- /demos/trac-converted.html: -------------------------------------------------------------------------------- 1 | 2 | 7 |
require 'twitter_ebooks'
 8 | 
 9 | class MyBot < Ebooks::Bot
10 |   # Configuration here applies to all MyBots
11 |   def configure
12 | 
13 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
14 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
15 | 
16 |   end
17 | 
18 |   def on_startup
19 |     model = Ebooks::Model.load("model/text.model")
20 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
21 |       tweet(model.make_statement(140))
22 |     end
23 |   end
24 | end
25 | 
26 | # Make a MyBot and attach it to an account
27 | MyBot.new("mage__ebooks") do |bot|
28 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
29 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
30 | end
31 | 
32 | -------------------------------------------------------------------------------- /demos/vim-converted.html: -------------------------------------------------------------------------------- 1 | 2 | 7 |
require 'twitter_ebooks'
 8 | 
 9 | class MyBot < Ebooks::Bot
10 |   # Configuration here applies to all MyBots
11 |   def configure
12 | 
13 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
14 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
15 | 
16 |   end
17 | 
18 |   def on_startup
19 |     model = Ebooks::Model.load("model/text.model")
20 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
21 |       tweet(model.make_statement(140))
22 |     end
23 |   end
24 | end
25 | 
26 | # Make a MyBot and attach it to an account
27 | MyBot.new("mage__ebooks") do |bot|
28 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
29 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
30 | end
31 | 
32 | -------------------------------------------------------------------------------- /perldoc.css: -------------------------------------------------------------------------------- 1 | .highlight .hll { background-color: #ffffcc; } 2 | .highlight { background: #eeeedd; } 3 | .highlight .c { color: #1e7b1e; } 4 | .highlight .err { color: #a61717; background-color: #e3d2d2; } 5 | .highlight .k { color: #8B008B; font-weight: bold; } 6 | .highlight .ch { color: #1e7b1e; } 7 | .highlight .cm { color: #1e7b1e; } 8 | .highlight .cp { color: #197487; } 9 | .highlight .cpf { color: #1e7b1e; } 10 | .highlight .c1 { color: #1e7b1e; } 11 | .highlight .cs { color: #8B008B; font-weight: bold; } 12 | .highlight .gd { color: #aa0000; } 13 | .highlight .ge { font-style: italic; } 14 | .highlight .gr { color: #aa0000; } 15 | .highlight .gh { color: #000080; font-weight: bold; } 16 | .highlight .gi { color: #007d00; } 17 | .highlight .go { color: #6a6a6a; } 18 | .highlight .gp { color: #555555; } 19 | .highlight .gs { font-weight: bold; } 20 | .highlight .gu { color: #800080; font-weight: bold; } 21 | .highlight .gt { color: #aa0000; } 22 | .highlight .kc { color: #8B008B; font-weight: bold; } 23 | .highlight .kd { color: #8B008B; font-weight: bold; } 24 | .highlight .kn { color: #8B008B; font-weight: bold; } 25 | .highlight .kp { color: #8B008B; font-weight: bold; } 26 | .highlight .kr { color: #8B008B; font-weight: bold; } 27 | .highlight .kt { color: #00688B; font-weight: bold; } 28 | .highlight .m { color: #a538c4; } 29 | .highlight .s { color: #c23838; } 30 | .highlight .na { color: #517200; } 31 | .highlight .nb { color: #517200; } 32 | .highlight .nc { font-weight: bold; color: #007c3c; } 33 | .highlight .no { color: #00688B; } 34 | .highlight .nd { color: #666b6d; } 35 | .highlight .ne { font-weight: bold; color: #007c3c; } 36 | .highlight .nf { color: #007c3c; } 37 | .highlight .nn { text-decoration: underline; color: #007c3c; } 38 | .highlight .nt { color: #8B008B; font-weight: bold; } 39 | .highlight .nv { color: #00688B; } 40 | .highlight .ow { color: #8B008B; } 41 | .highlight .w { color: #6a6a6a; } 42 | .highlight .mb { color: #a538c4; } 43 | .highlight .mf { color: #a538c4; } 44 | .highlight .mh { color: #a538c4; } 45 | .highlight .mi { color: #a538c4; } 46 | .highlight .mo { color: #a538c4; } 47 | .highlight .sa { color: #c23838; } 48 | .highlight .sb { color: #c23838; } 49 | .highlight .sc { color: #c23838; } 50 | .highlight .dl { color: #c23838; } 51 | .highlight .sd { color: #c23838; } 52 | .highlight .s2 { color: #c23838; } 53 | .highlight .se { color: #c23838; } 54 | .highlight .sh { font-style: italic; color: #1a7669; } 55 | .highlight .si { color: #c23838; } 56 | .highlight .sx { color: #a15816; } 57 | .highlight .sr { color: #1a7669; } 58 | .highlight .s1 { color: #c23838; } 59 | .highlight .ss { color: #c23838; } 60 | .highlight .bp { color: #517200; } 61 | .highlight .fm { color: #007c3c; } 62 | .highlight .vc { color: #00688B; } 63 | .highlight .vg { color: #00688B; } 64 | .highlight .vi { color: #00688B; } 65 | .highlight .vm { color: #00688B; } 66 | .highlight .il { color: #a538c4; } 67 | -------------------------------------------------------------------------------- /demos/autumn-converted.html: -------------------------------------------------------------------------------- 1 | 2 | 7 |
require 'twitter_ebooks'
 8 | 
 9 | class MyBot < Ebooks::Bot
10 |   # Configuration here applies to all MyBots
11 |   def configure
12 | 
13 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
14 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
15 | 
16 |   end
17 | 
18 |   def on_startup
19 |     model = Ebooks::Model.load("model/text.model")
20 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
21 |       tweet(model.make_statement(140))
22 |     end
23 |   end
24 | end
25 | 
26 | # Make a MyBot and attach it to an account
27 | MyBot.new("mage__ebooks") do |bot|
28 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
29 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
30 | end
31 | 
32 | -------------------------------------------------------------------------------- /demos/fruity-converted.html: -------------------------------------------------------------------------------- 1 | 2 | 7 |
require 'twitter_ebooks'
 8 | 
 9 | class MyBot < Ebooks::Bot
10 |   # Configuration here applies to all MyBots
11 |   def configure
12 | 
13 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
14 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
15 | 
16 |   end
17 | 
18 |   def on_startup
19 |     model = Ebooks::Model.load("model/text.model")
20 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
21 |       tweet(model.make_statement(140))
22 |     end
23 |   end
24 | end
25 | 
26 | # Make a MyBot and attach it to an account
27 | MyBot.new("mage__ebooks") do |bot|
28 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
29 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
30 | end
31 | 
32 | -------------------------------------------------------------------------------- /demos/native-converted.html: -------------------------------------------------------------------------------- 1 | 2 | 7 |
require 'twitter_ebooks'
 8 | 
 9 | class MyBot < Ebooks::Bot
10 |   # Configuration here applies to all MyBots
11 |   def configure
12 | 
13 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
14 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
15 | 
16 |   end
17 | 
18 |   def on_startup
19 |     model = Ebooks::Model.load("model/text.model")
20 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
21 |       tweet(model.make_statement(140))
22 |     end
23 |   end
24 | end
25 | 
26 | # Make a MyBot and attach it to an account
27 | MyBot.new("mage__ebooks") do |bot|
28 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
29 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
30 | end
31 | 
32 | -------------------------------------------------------------------------------- /demos/colorful-converted.html: -------------------------------------------------------------------------------- 1 | 2 | 7 |
require 'twitter_ebooks'
 8 | 
 9 | class MyBot < Ebooks::Bot
10 |   # Configuration here applies to all MyBots
11 |   def configure
12 | 
13 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
14 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
15 | 
16 |   end
17 | 
18 |   def on_startup
19 |     model = Ebooks::Model.load("model/text.model")
20 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
21 |       tweet(model.make_statement(140))
22 |     end
23 |   end
24 | end
25 | 
26 | # Make a MyBot and attach it to an account
27 | MyBot.new("mage__ebooks") do |bot|
28 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
29 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
30 | end
31 | 
32 | -------------------------------------------------------------------------------- /demos/monokai-converted.html: -------------------------------------------------------------------------------- 1 | 2 | 7 |
require 'twitter_ebooks'
 8 | 
 9 | class MyBot < Ebooks::Bot
10 |   # Configuration here applies to all MyBots
11 |   def configure
12 | 
13 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
14 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
15 | 
16 |   end
17 | 
18 |   def on_startup
19 |     model = Ebooks::Model.load("model/text.model")
20 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
21 |       tweet(model.make_statement(140))
22 |     end
23 |   end
24 | end
25 | 
26 | # Make a MyBot and attach it to an account
27 | MyBot.new("mage__ebooks") do |bot|
28 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
29 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
30 | end
31 | 
32 | -------------------------------------------------------------------------------- /demos/perldoc-converted.html: -------------------------------------------------------------------------------- 1 | 2 | 7 |
require 'twitter_ebooks'
 8 | 
 9 | class MyBot < Ebooks::Bot
10 |   # Configuration here applies to all MyBots
11 |   def configure
12 | 
13 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
14 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
15 | 
16 |   end
17 | 
18 |   def on_startup
19 |     model = Ebooks::Model.load("model/text.model")
20 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
21 |       tweet(model.make_statement(140))
22 |     end
23 |   end
24 | end
25 | 
26 | # Make a MyBot and attach it to an account
27 | MyBot.new("mage__ebooks") do |bot|
28 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
29 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
30 | end
31 | 
32 | -------------------------------------------------------------------------------- /demos/solarized-dark-converted.html: -------------------------------------------------------------------------------- 1 | 2 | 7 |
require 'twitter_ebooks'
 8 | 
 9 | class MyBot < Ebooks::Bot
10 |   # Configuration here applies to all MyBots
11 |   def configure
12 | 
13 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
14 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
15 | 
16 |   end
17 | 
18 |   def on_startup
19 |     model = Ebooks::Model.load("model/text.model")
20 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
21 |       tweet(model.make_statement(140))
22 |     end
23 |   end
24 | end
25 | 
26 | # Make a MyBot and attach it to an account
27 | MyBot.new("mage__ebooks") do |bot|
28 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
29 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
30 | end
31 | 
32 | -------------------------------------------------------------------------------- /demos/trac-original.html: -------------------------------------------------------------------------------- 1 | 2 | 7 |
require 'twitter_ebooks'
 8 | 
 9 | class MyBot < Ebooks::Bot
10 |   # Configuration here applies to all MyBots
11 |   def configure
12 | 
13 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
14 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
15 | 
16 |   end
17 | 
18 |   def on_startup
19 |     model = Ebooks::Model.load("model/text.model")
20 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
21 |       tweet(model.make_statement(140))
22 |     end
23 |   end
24 | end
25 | 
26 | # Make a MyBot and attach it to an account
27 | MyBot.new("mage__ebooks") do |bot|
28 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
29 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
30 | end
31 | 
32 | -------------------------------------------------------------------------------- /demos/vim-original.html: -------------------------------------------------------------------------------- 1 | 2 | 7 |
require 'twitter_ebooks'
 8 | 
 9 | class MyBot < Ebooks::Bot
10 |   # Configuration here applies to all MyBots
11 |   def configure
12 | 
13 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
14 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
15 | 
16 |   end
17 | 
18 |   def on_startup
19 |     model = Ebooks::Model.load("model/text.model")
20 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
21 |       tweet(model.make_statement(140))
22 |     end
23 |   end
24 | end
25 | 
26 | # Make a MyBot and attach it to an account
27 | MyBot.new("mage__ebooks") do |bot|
28 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
29 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
30 | end
31 | 
32 | -------------------------------------------------------------------------------- /demos/autumn-original.html: -------------------------------------------------------------------------------- 1 | 2 | 7 |
require 'twitter_ebooks'
 8 | 
 9 | class MyBot < Ebooks::Bot
10 |   # Configuration here applies to all MyBots
11 |   def configure
12 | 
13 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
14 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
15 | 
16 |   end
17 | 
18 |   def on_startup
19 |     model = Ebooks::Model.load("model/text.model")
20 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
21 |       tweet(model.make_statement(140))
22 |     end
23 |   end
24 | end
25 | 
26 | # Make a MyBot and attach it to an account
27 | MyBot.new("mage__ebooks") do |bot|
28 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
29 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
30 | end
31 | 
32 | -------------------------------------------------------------------------------- /demos/fruity-original.html: -------------------------------------------------------------------------------- 1 | 2 | 7 |
require 'twitter_ebooks'
 8 | 
 9 | class MyBot < Ebooks::Bot
10 |   # Configuration here applies to all MyBots
11 |   def configure
12 | 
13 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
14 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
15 | 
16 |   end
17 | 
18 |   def on_startup
19 |     model = Ebooks::Model.load("model/text.model")
20 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
21 |       tweet(model.make_statement(140))
22 |     end
23 |   end
24 | end
25 | 
26 | # Make a MyBot and attach it to an account
27 | MyBot.new("mage__ebooks") do |bot|
28 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
29 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
30 | end
31 | 
32 | -------------------------------------------------------------------------------- /demos/native-original.html: -------------------------------------------------------------------------------- 1 | 2 | 7 |
require 'twitter_ebooks'
 8 | 
 9 | class MyBot < Ebooks::Bot
10 |   # Configuration here applies to all MyBots
11 |   def configure
12 | 
13 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
14 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
15 | 
16 |   end
17 | 
18 |   def on_startup
19 |     model = Ebooks::Model.load("model/text.model")
20 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
21 |       tweet(model.make_statement(140))
22 |     end
23 |   end
24 | end
25 | 
26 | # Make a MyBot and attach it to an account
27 | MyBot.new("mage__ebooks") do |bot|
28 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
29 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
30 | end
31 | 
32 | -------------------------------------------------------------------------------- /demos/solarized-light-converted.html: -------------------------------------------------------------------------------- 1 | 2 | 7 |
require 'twitter_ebooks'
 8 | 
 9 | class MyBot < Ebooks::Bot
10 |   # Configuration here applies to all MyBots
11 |   def configure
12 | 
13 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
14 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
15 | 
16 |   end
17 | 
18 |   def on_startup
19 |     model = Ebooks::Model.load("model/text.model")
20 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
21 |       tweet(model.make_statement(140))
22 |     end
23 |   end
24 | end
25 | 
26 | # Make a MyBot and attach it to an account
27 | MyBot.new("mage__ebooks") do |bot|
28 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
29 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
30 | end
31 | 
32 | -------------------------------------------------------------------------------- /demos/colorful-original.html: -------------------------------------------------------------------------------- 1 | 2 | 7 |
require 'twitter_ebooks'
 8 | 
 9 | class MyBot < Ebooks::Bot
10 |   # Configuration here applies to all MyBots
11 |   def configure
12 | 
13 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
14 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
15 | 
16 |   end
17 | 
18 |   def on_startup
19 |     model = Ebooks::Model.load("model/text.model")
20 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
21 |       tweet(model.make_statement(140))
22 |     end
23 |   end
24 | end
25 | 
26 | # Make a MyBot and attach it to an account
27 | MyBot.new("mage__ebooks") do |bot|
28 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
29 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
30 | end
31 | 
32 | -------------------------------------------------------------------------------- /demos/monokai-original.html: -------------------------------------------------------------------------------- 1 | 2 | 7 |
require 'twitter_ebooks'
 8 | 
 9 | class MyBot < Ebooks::Bot
10 |   # Configuration here applies to all MyBots
11 |   def configure
12 | 
13 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
14 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
15 | 
16 |   end
17 | 
18 |   def on_startup
19 |     model = Ebooks::Model.load("model/text.model")
20 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
21 |       tweet(model.make_statement(140))
22 |     end
23 |   end
24 | end
25 | 
26 | # Make a MyBot and attach it to an account
27 | MyBot.new("mage__ebooks") do |bot|
28 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
29 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
30 | end
31 | 
32 | -------------------------------------------------------------------------------- /demos/perldoc-original.html: -------------------------------------------------------------------------------- 1 | 2 | 7 |
require 'twitter_ebooks'
 8 | 
 9 | class MyBot < Ebooks::Bot
10 |   # Configuration here applies to all MyBots
11 |   def configure
12 | 
13 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
14 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
15 | 
16 |   end
17 | 
18 |   def on_startup
19 |     model = Ebooks::Model.load("model/text.model")
20 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
21 |       tweet(model.make_statement(140))
22 |     end
23 |   end
24 | end
25 | 
26 | # Make a MyBot and attach it to an account
27 | MyBot.new("mage__ebooks") do |bot|
28 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
29 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
30 | end
31 | 
32 | -------------------------------------------------------------------------------- /demos/solarized-dark-original.html: -------------------------------------------------------------------------------- 1 | 2 | 7 |
require 'twitter_ebooks'
 8 | 
 9 | class MyBot < Ebooks::Bot
10 |   # Configuration here applies to all MyBots
11 |   def configure
12 | 
13 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
14 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
15 | 
16 |   end
17 | 
18 |   def on_startup
19 |     model = Ebooks::Model.load("model/text.model")
20 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
21 |       tweet(model.make_statement(140))
22 |     end
23 |   end
24 | end
25 | 
26 | # Make a MyBot and attach it to an account
27 | MyBot.new("mage__ebooks") do |bot|
28 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
29 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
30 | end
31 | 
32 | -------------------------------------------------------------------------------- /demos/solarized-light-original.html: -------------------------------------------------------------------------------- 1 | 2 | 7 |
require 'twitter_ebooks'
 8 | 
 9 | class MyBot < Ebooks::Bot
10 |   # Configuration here applies to all MyBots
11 |   def configure
12 | 
13 |     self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
14 |     self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
15 | 
16 |   end
17 | 
18 |   def on_startup
19 |     model = Ebooks::Model.load("model/text.model")
20 |     scheduler.cron '0 6,18,22 * * * America/New_York' do
21 |       tweet(model.make_statement(140))
22 |     end
23 |   end
24 | end
25 | 
26 | # Make a MyBot and attach it to an account
27 | MyBot.new("mage__ebooks") do |bot|
28 |   bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
29 |   bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
30 | end
31 | 
32 | -------------------------------------------------------------------------------- /trac.css: -------------------------------------------------------------------------------- 1 | .highlight .hll { background-color: #ffffcc; } 2 | .highlight { background: #ffffff; } 3 | .highlight .c { font-style: italic; color: #767665; } 4 | .highlight .err { color: #a61717; background-color: #e3d2d2; } 5 | .highlight .k { font-weight: bold; } 6 | .highlight .o { font-weight: bold; } 7 | .highlight .ch { font-style: italic; color: #767665; } 8 | .highlight .cm { font-style: italic; color: #767665; } 9 | .highlight .cp { font-weight: bold; color: #757575; } 10 | .highlight .cpf { font-style: italic; color: #767665; } 11 | .highlight .c1 { font-style: italic; color: #767665; } 12 | .highlight .cs { font-weight: bold; font-style: italic; color: #757575; } 13 | .highlight .gd { color: #000000; background-color: #ffdddd; } 14 | .highlight .ge { font-style: italic; } 15 | .highlight .gr { color: #aa0000; } 16 | .highlight .gh { color: #757575; } 17 | .highlight .gi { color: #000000; background-color: #ddffdd; } 18 | .highlight .go { color: #767676; } 19 | .highlight .gp { color: #555555; } 20 | .highlight .gs { font-weight: bold; } 21 | .highlight .gu { color: #747474; } 22 | .highlight .gt { color: #aa0000; } 23 | .highlight .kc { font-weight: bold; } 24 | .highlight .kd { font-weight: bold; } 25 | .highlight .kn { font-weight: bold; } 26 | .highlight .kp { font-weight: bold; } 27 | .highlight .kr { font-weight: bold; } 28 | .highlight .kt { color: #445588; font-weight: bold; } 29 | .highlight .m { color: #008080; } 30 | .highlight .s { color: #976d3b; } 31 | .highlight .na { color: #008080; } 32 | .highlight .nb { color: #757575; } 33 | .highlight .nc { color: #445588; font-weight: bold; } 34 | .highlight .no { color: #008080; } 35 | .highlight .ni { color: #800080; } 36 | .highlight .ne { color: #990000; font-weight: bold; } 37 | .highlight .nf { color: #990000; font-weight: bold; } 38 | .highlight .nn { color: #555555; } 39 | .highlight .nt { color: #000080; } 40 | .highlight .nv { color: #008080; } 41 | .highlight .ow { font-weight: bold; } 42 | .highlight .w { color: #767676; } 43 | .highlight .mb { color: #008080; } 44 | .highlight .mf { color: #008080; } 45 | .highlight .mh { color: #008080; } 46 | .highlight .mi { color: #008080; } 47 | .highlight .mo { color: #008080; } 48 | .highlight .sa { color: #976d3b; } 49 | .highlight .sb { color: #976d3b; } 50 | .highlight .sc { color: #976d3b; } 51 | .highlight .dl { color: #976d3b; } 52 | .highlight .sd { color: #976d3b; } 53 | .highlight .s2 { color: #976d3b; } 54 | .highlight .se { color: #976d3b; } 55 | .highlight .sh { color: #976d3b; } 56 | .highlight .si { color: #976d3b; } 57 | .highlight .sx { color: #976d3b; } 58 | .highlight .sr { color: #767600; } 59 | .highlight .s1 { color: #976d3b; } 60 | .highlight .ss { color: #976d3b; } 61 | .highlight .bp { color: #757575; } 62 | .highlight .fm { color: #990000; font-weight: bold; } 63 | .highlight .vc { color: #008080; } 64 | .highlight .vg { color: #008080; } 65 | .highlight .vi { color: #008080; } 66 | .highlight .vm { color: #008080; } 67 | .highlight .il { color: #008080; } 68 | -------------------------------------------------------------------------------- /vim.css: -------------------------------------------------------------------------------- 1 | .highlight .hll { background-color: #222222; } 2 | .highlight { background: #000000; color: #cccccc; } 3 | .highlight .c { color: #6262ff; } 4 | .highlight .err { color: #cccccc; border: 1px solid #FF0000; } 5 | .highlight .esc { color: #cccccc; } 6 | .highlight .g { color: #cccccc; } 7 | .highlight .k { color: #cdcd00; } 8 | .highlight .l { color: #cccccc; } 9 | .highlight .n { color: #cccccc; } 10 | .highlight .o { color: #3399cc; } 11 | .highlight .x { color: #cccccc; } 12 | .highlight .p { color: #cccccc; } 13 | .highlight .ch { color: #6262ff; } 14 | .highlight .cm { color: #6262ff; } 15 | .highlight .cp { color: #6262ff; } 16 | .highlight .cpf { color: #6262ff; } 17 | .highlight .c1 { color: #6262ff; } 18 | .highlight .cs { font-weight: bold; color: #eb0000; } 19 | .highlight .gd { color: #eb0000; } 20 | .highlight .ge { color: #cccccc; font-style: italic; } 21 | .highlight .gr { color: #FF0000; } 22 | .highlight .gh { font-weight: bold; color: #6262ff; } 23 | .highlight .gi { color: #00cd00; } 24 | .highlight .go { color: #888888; } 25 | .highlight .gp { font-weight: bold; color: #6262ff; } 26 | .highlight .gs { color: #cccccc; font-weight: bold; } 27 | .highlight .gu { font-weight: bold; color: #d000d0; } 28 | .highlight .gt { color: #296bff; } 29 | .highlight .kc { color: #cdcd00; } 30 | .highlight .kd { color: #00cd00; } 31 | .highlight .kn { color: #d200d2; } 32 | .highlight .kp { color: #cdcd00; } 33 | .highlight .kr { color: #cdcd00; } 34 | .highlight .kt { color: #00cd00; } 35 | .highlight .ld { color: #cccccc; } 36 | .highlight .m { color: #d200d2; } 37 | .highlight .s { color: #eb0000; } 38 | .highlight .na { color: #cccccc; } 39 | .highlight .nb { color: #d200d2; } 40 | .highlight .nc { color: #00cdcd; } 41 | .highlight .no { color: #cccccc; } 42 | .highlight .nd { color: #cccccc; } 43 | .highlight .ni { color: #cccccc; } 44 | .highlight .ne { font-weight: bold; color: #7272a1; } 45 | .highlight .nf { color: #cccccc; } 46 | .highlight .nl { color: #cccccc; } 47 | .highlight .nn { color: #cccccc; } 48 | .highlight .nx { color: #cccccc; } 49 | .highlight .py { color: #cccccc; } 50 | .highlight .nt { color: #cccccc; } 51 | .highlight .nv { color: #00cdcd; } 52 | .highlight .ow { color: #cdcd00; } 53 | .highlight .w { color: #cccccc; } 54 | .highlight .mb { color: #d200d2; } 55 | .highlight .mf { color: #d200d2; } 56 | .highlight .mh { color: #d200d2; } 57 | .highlight .mi { color: #d200d2; } 58 | .highlight .mo { color: #d200d2; } 59 | .highlight .sa { color: #eb0000; } 60 | .highlight .sb { color: #eb0000; } 61 | .highlight .sc { color: #eb0000; } 62 | .highlight .dl { color: #eb0000; } 63 | .highlight .sd { color: #eb0000; } 64 | .highlight .s2 { color: #eb0000; } 65 | .highlight .se { color: #eb0000; } 66 | .highlight .sh { color: #eb0000; } 67 | .highlight .si { color: #eb0000; } 68 | .highlight .sx { color: #eb0000; } 69 | .highlight .sr { color: #eb0000; } 70 | .highlight .s1 { color: #eb0000; } 71 | .highlight .ss { color: #eb0000; } 72 | .highlight .bp { color: #d200d2; } 73 | .highlight .fm { color: #cccccc; } 74 | .highlight .vc { color: #00cdcd; } 75 | .highlight .vg { color: #00cdcd; } 76 | .highlight .vi { color: #00cdcd; } 77 | .highlight .vm { color: #00cdcd; } 78 | .highlight .il { color: #d200d2; } 79 | -------------------------------------------------------------------------------- /colorful.css: -------------------------------------------------------------------------------- 1 | .highlight .hll { background-color: #ffffcc; } 2 | .highlight { background: #ffffff; } 3 | .highlight .c { color: #767676; } 4 | .highlight .err { background-color: #FFAAAA; color: #a00000; } 5 | .highlight .k { color: #008800; font-weight: bold; } 6 | .highlight .o { color: #333333; } 7 | .highlight .ch { color: #767676; } 8 | .highlight .cm { color: #767676; } 9 | .highlight .cp { color: #557799; } 10 | .highlight .cpf { color: #767676; } 11 | .highlight .c1 { color: #767676; } 12 | .highlight .cs { color: #cc0000; font-weight: bold; } 13 | .highlight .gd { color: #A00000; } 14 | .highlight .ge { font-style: italic; } 15 | .highlight .gr { color: #eb0000; } 16 | .highlight .gh { color: #000080; font-weight: bold; } 17 | .highlight .gi { color: #008700; } 18 | .highlight .go { color: #767676; } 19 | .highlight .gp { font-weight: bold; color: #bc5909; } 20 | .highlight .gs { font-weight: bold; } 21 | .highlight .gu { color: #800080; font-weight: bold; } 22 | .highlight .gt { color: #0044DD; } 23 | .highlight .kc { color: #008800; font-weight: bold; } 24 | .highlight .kd { color: #008800; font-weight: bold; } 25 | .highlight .kn { color: #008800; font-weight: bold; } 26 | .highlight .kp { color: #003388; font-weight: bold; } 27 | .highlight .kr { color: #008800; font-weight: bold; } 28 | .highlight .kt { color: #333399; font-weight: bold; } 29 | .highlight .m { color: #6600EE; font-weight: bold; } 30 | .highlight .s { background-color: #fff0f0; } 31 | .highlight .na { color: #0000CC; } 32 | .highlight .nb { color: #007020; } 33 | .highlight .nc { color: #BB0066; font-weight: bold; } 34 | .highlight .no { color: #003366; font-weight: bold; } 35 | .highlight .nd { color: #555555; font-weight: bold; } 36 | .highlight .ni { color: #880000; font-weight: bold; } 37 | .highlight .ne { font-weight: bold; color: #eb0000; } 38 | .highlight .nf { color: #0066BB; font-weight: bold; } 39 | .highlight .nl { font-weight: bold; color: #8f6f00; } 40 | .highlight .nn { font-weight: bold; color: #0e7eab; } 41 | .highlight .nt { color: #007700; } 42 | .highlight .nv { color: #996633; } 43 | .highlight .ow { color: #000000; font-weight: bold; } 44 | .highlight .w { color: #767676; } 45 | .highlight .mb { color: #6600EE; font-weight: bold; } 46 | .highlight .mf { color: #6600EE; font-weight: bold; } 47 | .highlight .mh { color: #005588; font-weight: bold; } 48 | .highlight .mi { color: #0000DD; font-weight: bold; } 49 | .highlight .mo { color: #4400EE; font-weight: bold; } 50 | .highlight .sa { background-color: #fff0f0; } 51 | .highlight .sb { background-color: #fff0f0; } 52 | .highlight .sc { color: #0044DD; } 53 | .highlight .dl { background-color: #fff0f0; } 54 | .highlight .sd { color: #d54220; } 55 | .highlight .s2 { background-color: #fff0f0; } 56 | .highlight .se { color: #666666; font-weight: bold; background-color: #fff0f0; } 57 | .highlight .sh { background-color: #fff0f0; } 58 | .highlight .si { background-color: #eeeeee; } 59 | .highlight .sx { background-color: #fff0f0; color: #d82100; } 60 | .highlight .sr { color: #000000; background-color: #fff0ff; } 61 | .highlight .s1 { background-color: #fff0f0; } 62 | .highlight .ss { color: #AA6600; } 63 | .highlight .bp { color: #007020; } 64 | .highlight .fm { color: #0066BB; font-weight: bold; } 65 | .highlight .vc { color: #336699; } 66 | .highlight .vg { font-weight: bold; color: #b55f00; } 67 | .highlight .vi { color: #3333BB; } 68 | .highlight .vm { color: #996633; } 69 | .highlight .il { color: #0000DD; font-weight: bold; } 70 | -------------------------------------------------------------------------------- /original-stylesheets/borland.css: -------------------------------------------------------------------------------- 1 | .highlight .hll { background-color: #ffffcc } 2 | .highlight { background: #ffffff; } 3 | .highlight .c { color: #008800; font-style: italic } /* Comment */ 4 | .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ 5 | .highlight .k { color: #000080; font-weight: bold } /* Keyword */ 6 | .highlight .ch { color: #008800; font-style: italic } /* Comment.Hashbang */ 7 | .highlight .cm { color: #008800; font-style: italic } /* Comment.Multiline */ 8 | .highlight .cp { color: #008080 } /* Comment.Preproc */ 9 | .highlight .cpf { color: #008800; font-style: italic } /* Comment.PreprocFile */ 10 | .highlight .c1 { color: #008800; font-style: italic } /* Comment.Single */ 11 | .highlight .cs { color: #008800; font-weight: bold } /* 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: #999999 } /* 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: #aaaaaa } /* Generic.Subheading */ 21 | .highlight .gt { color: #aa0000 } /* Generic.Traceback */ 22 | .highlight .kc { color: #000080; font-weight: bold } /* Keyword.Constant */ 23 | .highlight .kd { color: #000080; font-weight: bold } /* Keyword.Declaration */ 24 | .highlight .kn { color: #000080; font-weight: bold } /* Keyword.Namespace */ 25 | .highlight .kp { color: #000080; font-weight: bold } /* Keyword.Pseudo */ 26 | .highlight .kr { color: #000080; font-weight: bold } /* Keyword.Reserved */ 27 | .highlight .kt { color: #000080; font-weight: bold } /* Keyword.Type */ 28 | .highlight .m { color: #0000FF } /* Literal.Number */ 29 | .highlight .s { color: #0000FF } /* Literal.String */ 30 | .highlight .na { color: #FF0000 } /* Name.Attribute */ 31 | .highlight .nt { color: #000080; font-weight: bold } /* Name.Tag */ 32 | .highlight .ow { font-weight: bold } /* Operator.Word */ 33 | .highlight .w { color: #bbbbbb } /* Text.Whitespace */ 34 | .highlight .mb { color: #0000FF } /* Literal.Number.Bin */ 35 | .highlight .mf { color: #0000FF } /* Literal.Number.Float */ 36 | .highlight .mh { color: #0000FF } /* Literal.Number.Hex */ 37 | .highlight .mi { color: #0000FF } /* Literal.Number.Integer */ 38 | .highlight .mo { color: #0000FF } /* Literal.Number.Oct */ 39 | .highlight .sa { color: #0000FF } /* Literal.String.Affix */ 40 | .highlight .sb { color: #0000FF } /* Literal.String.Backtick */ 41 | .highlight .sc { color: #800080 } /* Literal.String.Char */ 42 | .highlight .dl { color: #0000FF } /* Literal.String.Delimiter */ 43 | .highlight .sd { color: #0000FF } /* Literal.String.Doc */ 44 | .highlight .s2 { color: #0000FF } /* Literal.String.Double */ 45 | .highlight .se { color: #0000FF } /* Literal.String.Escape */ 46 | .highlight .sh { color: #0000FF } /* Literal.String.Heredoc */ 47 | .highlight .si { color: #0000FF } /* Literal.String.Interpol */ 48 | .highlight .sx { color: #0000FF } /* Literal.String.Other */ 49 | .highlight .sr { color: #0000FF } /* Literal.String.Regex */ 50 | .highlight .s1 { color: #0000FF } /* Literal.String.Single */ 51 | .highlight .ss { color: #0000FF } /* Literal.String.Symbol */ 52 | .highlight .il { color: #0000FF } /* Literal.Number.Integer.Long */ 53 | -------------------------------------------------------------------------------- /native.css: -------------------------------------------------------------------------------- 1 | .highlight .hll { background-color: #404040; } 2 | .highlight { background: #202020; color: #d0d0d0; } 3 | .highlight .c { color: #999999; font-style: italic; } 4 | .highlight .err { color: #a61717; background-color: #e3d2d2; } 5 | .highlight .esc { color: #d0d0d0; } 6 | .highlight .g { color: #d0d0d0; } 7 | .highlight .k { color: #6ab825; font-weight: bold; } 8 | .highlight .l { color: #d0d0d0; } 9 | .highlight .n { color: #d0d0d0; } 10 | .highlight .o { color: #d0d0d0; } 11 | .highlight .x { color: #d0d0d0; } 12 | .highlight .p { color: #d0d0d0; } 13 | .highlight .ch { color: #999999; font-style: italic; } 14 | .highlight .cm { color: #999999; font-style: italic; } 15 | .highlight .cp { font-weight: bold; color: #e15a5a; } 16 | .highlight .cpf { color: #999999; font-style: italic; } 17 | .highlight .c1 { color: #999999; font-style: italic; } 18 | .highlight .cs { font-weight: bold; background-color: #520000; color: #f75050; } 19 | .highlight .gd { color: #e75959; } 20 | .highlight .ge { color: #d0d0d0; font-style: italic; } 21 | .highlight .gr { color: #e75959; } 22 | .highlight .gh { color: #ffffff; font-weight: bold; } 23 | .highlight .gi { color: #589819; } 24 | .highlight .go { color: #cccccc; } 25 | .highlight .gp { color: #aaaaaa; } 26 | .highlight .gs { color: #d0d0d0; font-weight: bold; } 27 | .highlight .gu { color: #ffffff; text-decoration: underline; } 28 | .highlight .gt { color: #e75959; } 29 | .highlight .kc { color: #6ab825; font-weight: bold; } 30 | .highlight .kd { color: #6ab825; font-weight: bold; } 31 | .highlight .kn { color: #6ab825; font-weight: bold; } 32 | .highlight .kp { color: #6ab825; } 33 | .highlight .kr { color: #6ab825; font-weight: bold; } 34 | .highlight .kt { color: #6ab825; font-weight: bold; } 35 | .highlight .ld { color: #d0d0d0; } 36 | .highlight .m { color: #438dc4; } 37 | .highlight .s { color: #ed9d13; } 38 | .highlight .na { color: #bbbbbb; } 39 | .highlight .nb { color: #2594a1; } 40 | .highlight .nc { text-decoration: underline; color: #548bd3; } 41 | .highlight .no { color: #40ffff; } 42 | .highlight .nd { color: #ffa500; } 43 | .highlight .ni { color: #d0d0d0; } 44 | .highlight .ne { color: #bbbbbb; } 45 | .highlight .nf { color: #548bd3; } 46 | .highlight .nl { color: #d0d0d0; } 47 | .highlight .nn { text-decoration: underline; color: #548bd3; } 48 | .highlight .nx { color: #d0d0d0; } 49 | .highlight .py { color: #d0d0d0; } 50 | .highlight .nt { color: #6ab825; font-weight: bold; } 51 | .highlight .nv { color: #40ffff; } 52 | .highlight .ow { color: #6ab825; font-weight: bold; } 53 | .highlight .w { color: #878787; } 54 | .highlight .mb { color: #438dc4; } 55 | .highlight .mf { color: #438dc4; } 56 | .highlight .mh { color: #438dc4; } 57 | .highlight .mi { color: #438dc4; } 58 | .highlight .mo { color: #438dc4; } 59 | .highlight .sa { color: #ed9d13; } 60 | .highlight .sb { color: #ed9d13; } 61 | .highlight .sc { color: #ed9d13; } 62 | .highlight .dl { color: #ed9d13; } 63 | .highlight .sd { color: #ed9d13; } 64 | .highlight .s2 { color: #ed9d13; } 65 | .highlight .se { color: #ed9d13; } 66 | .highlight .sh { color: #ed9d13; } 67 | .highlight .si { color: #ed9d13; } 68 | .highlight .sx { color: #ffa500; } 69 | .highlight .sr { color: #ed9d13; } 70 | .highlight .s1 { color: #ed9d13; } 71 | .highlight .ss { color: #ed9d13; } 72 | .highlight .bp { color: #2594a1; } 73 | .highlight .fm { color: #548bd3; } 74 | .highlight .vc { color: #40ffff; } 75 | .highlight .vg { color: #40ffff; } 76 | .highlight .vi { color: #40ffff; } 77 | .highlight .vm { color: #40ffff; } 78 | .highlight .il { color: #438dc4; } 79 | -------------------------------------------------------------------------------- /fruity.css: -------------------------------------------------------------------------------- 1 | .highlight .hll { background-color: #333333; } 2 | .highlight { background: #111111; color: #ffffff; } 3 | .highlight .c { font-style: italic; background-color: #0f140f; color: #009200; } 4 | .highlight .err { color: #ffffff; } 5 | .highlight .esc { color: #ffffff; } 6 | .highlight .g { color: #ffffff; } 7 | .highlight .k { color: #fb660a; font-weight: bold; } 8 | .highlight .l { color: #ffffff; } 9 | .highlight .n { color: #ffffff; } 10 | .highlight .o { color: #ffffff; } 11 | .highlight .x { color: #ffffff; } 12 | .highlight .p { color: #ffffff; } 13 | .highlight .ch { font-style: italic; background-color: #0f140f; color: #009200; } 14 | .highlight .cm { font-style: italic; background-color: #0f140f; color: #009200; } 15 | .highlight .cp { color: #ff0007; font-weight: bold; font-style: italic; background-color: #0f140f; } 16 | .highlight .cpf { font-style: italic; background-color: #0f140f; color: #009200; } 17 | .highlight .c1 { font-style: italic; background-color: #0f140f; color: #009200; } 18 | .highlight .cs { font-style: italic; background-color: #0f140f; color: #009200; } 19 | .highlight .gd { color: #ffffff; } 20 | .highlight .ge { color: #ffffff; } 21 | .highlight .gr { color: #ffffff; } 22 | .highlight .gh { color: #ffffff; font-weight: bold; } 23 | .highlight .gi { color: #ffffff; } 24 | .highlight .go { background-color: #222222; color: #898989; } 25 | .highlight .gp { color: #ffffff; } 26 | .highlight .gs { color: #ffffff; } 27 | .highlight .gu { color: #ffffff; font-weight: bold; } 28 | .highlight .gt { color: #ffffff; } 29 | .highlight .kc { color: #fb660a; font-weight: bold; } 30 | .highlight .kd { color: #fb660a; font-weight: bold; } 31 | .highlight .kn { color: #fb660a; font-weight: bold; } 32 | .highlight .kp { color: #fb660a; } 33 | .highlight .kr { color: #fb660a; font-weight: bold; } 34 | .highlight .kt { color: #cdcaa9; font-weight: bold; } 35 | .highlight .ld { color: #ffffff; } 36 | .highlight .m { color: #0086f7; font-weight: bold; } 37 | .highlight .s { color: #0086d2; } 38 | .highlight .na { color: #ff0086; font-weight: bold; } 39 | .highlight .nb { color: #ffffff; } 40 | .highlight .nc { color: #ffffff; } 41 | .highlight .no { color: #0086d2; } 42 | .highlight .nd { color: #ffffff; } 43 | .highlight .ni { color: #ffffff; } 44 | .highlight .ne { color: #ffffff; } 45 | .highlight .nf { color: #ff0086; font-weight: bold; } 46 | .highlight .nl { color: #ffffff; } 47 | .highlight .nn { color: #ffffff; } 48 | .highlight .nx { color: #ffffff; } 49 | .highlight .py { color: #ffffff; } 50 | .highlight .nt { color: #fb660a; font-weight: bold; } 51 | .highlight .nv { color: #fb660a; } 52 | .highlight .ow { color: #ffffff; } 53 | .highlight .w { color: #888888; } 54 | .highlight .mb { color: #0086f7; font-weight: bold; } 55 | .highlight .mf { color: #0086f7; font-weight: bold; } 56 | .highlight .mh { color: #0086f7; font-weight: bold; } 57 | .highlight .mi { color: #0086f7; font-weight: bold; } 58 | .highlight .mo { color: #0086f7; font-weight: bold; } 59 | .highlight .sa { color: #0086d2; } 60 | .highlight .sb { color: #0086d2; } 61 | .highlight .sc { color: #0086d2; } 62 | .highlight .dl { color: #0086d2; } 63 | .highlight .sd { color: #0086d2; } 64 | .highlight .s2 { color: #0086d2; } 65 | .highlight .se { color: #0086d2; } 66 | .highlight .sh { color: #0086d2; } 67 | .highlight .si { color: #0086d2; } 68 | .highlight .sx { color: #0086d2; } 69 | .highlight .sr { color: #0086d2; } 70 | .highlight .s1 { color: #0086d2; } 71 | .highlight .ss { color: #0086d2; } 72 | .highlight .bp { color: #ffffff; } 73 | .highlight .fm { color: #ff0086; font-weight: bold; } 74 | .highlight .vc { color: #fb660a; } 75 | .highlight .vg { color: #fb660a; } 76 | .highlight .vi { color: #fb660a; } 77 | .highlight .vm { color: #fb660a; } 78 | .highlight .il { color: #0086f7; font-weight: bold; } 79 | -------------------------------------------------------------------------------- /original-stylesheets/solarized-dark.css: -------------------------------------------------------------------------------- 1 | .highlight { background-color: #002b36; color: #93a1a1 } 2 | .highlight .c { color: #586e75 } /* Comment */ 3 | .highlight .err { color: #93a1a1 } /* Error */ 4 | .highlight .g { color: #93a1a1 } /* Generic */ 5 | .highlight .k { color: #859900 } /* Keyword */ 6 | .highlight .l { color: #93a1a1 } /* Literal */ 7 | .highlight .n { color: #93a1a1 } /* Name */ 8 | .highlight .o { color: #859900 } /* Operator */ 9 | .highlight .x { color: #cb4b16 } /* Other */ 10 | .highlight .p { color: #93a1a1 } /* Punctuation */ 11 | .highlight .cm { color: #586e75 } /* Comment.Multiline */ 12 | .highlight .cp { color: #859900 } /* Comment.Preproc */ 13 | .highlight .c1 { color: #586e75 } /* Comment.Single */ 14 | .highlight .cs { color: #859900 } /* Comment.Special */ 15 | .highlight .gd { color: #2aa198 } /* Generic.Deleted */ 16 | .highlight .ge { color: #93a1a1; font-style: italic } /* Generic.Emph */ 17 | .highlight .gr { color: #dc322f } /* Generic.Error */ 18 | .highlight .gh { color: #cb4b16 } /* Generic.Heading */ 19 | .highlight .gi { color: #859900 } /* Generic.Inserted */ 20 | .highlight .go { color: #93a1a1 } /* Generic.Output */ 21 | .highlight .gp { color: #93a1a1 } /* Generic.Prompt */ 22 | .highlight .gs { color: #93a1a1; font-weight: bold } /* Generic.Strong */ 23 | .highlight .gu { color: #cb4b16 } /* Generic.Subheading */ 24 | .highlight .gt { color: #93a1a1 } /* Generic.Traceback */ 25 | .highlight .kc { color: #cb4b16 } /* Keyword.Constant */ 26 | .highlight .kd { color: #268bd2 } /* Keyword.Declaration */ 27 | .highlight .kn { color: #859900 } /* Keyword.Namespace */ 28 | .highlight .kp { color: #859900 } /* Keyword.Pseudo */ 29 | .highlight .kr { color: #268bd2 } /* Keyword.Reserved */ 30 | .highlight .kt { color: #dc322f } /* Keyword.Type */ 31 | .highlight .ld { color: #93a1a1 } /* Literal.Date */ 32 | .highlight .m { color: #2aa198 } /* Literal.Number */ 33 | .highlight .s { color: #2aa198 } /* Literal.String */ 34 | .highlight .na { color: #93a1a1 } /* Name.Attribute */ 35 | .highlight .nb { color: #B58900 } /* Name.Builtin */ 36 | .highlight .nc { color: #268bd2 } /* Name.Class */ 37 | .highlight .no { color: #cb4b16 } /* Name.Constant */ 38 | .highlight .nd { color: #268bd2 } /* Name.Decorator */ 39 | .highlight .ni { color: #cb4b16 } /* Name.Entity */ 40 | .highlight .ne { color: #cb4b16 } /* Name.Exception */ 41 | .highlight .nf { color: #268bd2 } /* Name.Function */ 42 | .highlight .nl { color: #93a1a1 } /* Name.Label */ 43 | .highlight .nn { color: #93a1a1 } /* Name.Namespace */ 44 | .highlight .nx { color: #93a1a1 } /* Name.Other */ 45 | .highlight .py { color: #93a1a1 } /* Name.Property */ 46 | .highlight .nt { color: #268bd2 } /* Name.Tag */ 47 | .highlight .nv { color: #268bd2 } /* Name.Variable */ 48 | .highlight .ow { color: #859900 } /* Operator.Word */ 49 | .highlight .w { color: #93a1a1 } /* Text.Whitespace */ 50 | .highlight .mf { color: #2aa198 } /* Literal.Number.Float */ 51 | .highlight .mh { color: #2aa198 } /* Literal.Number.Hex */ 52 | .highlight .mi { color: #2aa198 } /* Literal.Number.Integer */ 53 | .highlight .mo { color: #2aa198 } /* Literal.Number.Oct */ 54 | .highlight .sb { color: #586e75 } /* Literal.String.Backtick */ 55 | .highlight .sc { color: #2aa198 } /* Literal.String.Char */ 56 | .highlight .sd { color: #93a1a1 } /* Literal.String.Doc */ 57 | .highlight .s2 { color: #2aa198 } /* Literal.String.Double */ 58 | .highlight .se { color: #cb4b16 } /* Literal.String.Escape */ 59 | .highlight .sh { color: #93a1a1 } /* Literal.String.Heredoc */ 60 | .highlight .si { color: #2aa198 } /* Literal.String.Interpol */ 61 | .highlight .sx { color: #2aa198 } /* Literal.String.Other */ 62 | .highlight .sr { color: #dc322f } /* Literal.String.Regex */ 63 | .highlight .s1 { color: #2aa198 } /* Literal.String.Single */ 64 | .highlight .ss { color: #2aa198 } /* Literal.String.Symbol */ 65 | .highlight .bp { color: #268bd2 } /* Name.Builtin.Pseudo */ 66 | .highlight .vc { color: #268bd2 } /* Name.Variable.Class */ 67 | .highlight .vg { color: #268bd2 } /* Name.Variable.Global */ 68 | .highlight .vi { color: #268bd2 } /* Name.Variable.Instance */ 69 | .highlight .il { color: #2aa198 } /* Literal.Number.Integer.Long */ 70 | -------------------------------------------------------------------------------- /original-stylesheets/solarized-light.css: -------------------------------------------------------------------------------- 1 | .highlight { background-color: #fdf6e3; color: #586e75 } 2 | .highlight .c { color: #93a1a1 } /* Comment */ 3 | .highlight .err { color: #586e75 } /* Error */ 4 | .highlight .g { color: #586e75 } /* Generic */ 5 | .highlight .k { color: #859900 } /* Keyword */ 6 | .highlight .l { color: #586e75 } /* Literal */ 7 | .highlight .n { color: #586e75 } /* Name */ 8 | .highlight .o { color: #859900 } /* Operator */ 9 | .highlight .x { color: #cb4b16 } /* Other */ 10 | .highlight .p { color: #586e75 } /* Punctuation */ 11 | .highlight .cm { color: #93a1a1 } /* Comment.Multiline */ 12 | .highlight .cp { color: #859900 } /* Comment.Preproc */ 13 | .highlight .c1 { color: #93a1a1 } /* Comment.Single */ 14 | .highlight .cs { color: #859900 } /* Comment.Special */ 15 | .highlight .gd { color: #2aa198 } /* Generic.Deleted */ 16 | .highlight .ge { color: #586e75; font-style: italic } /* Generic.Emph */ 17 | .highlight .gr { color: #dc322f } /* Generic.Error */ 18 | .highlight .gh { color: #cb4b16 } /* Generic.Heading */ 19 | .highlight .gi { color: #859900 } /* Generic.Inserted */ 20 | .highlight .go { color: #586e75 } /* Generic.Output */ 21 | .highlight .gp { color: #586e75 } /* Generic.Prompt */ 22 | .highlight .gs { color: #586e75; font-weight: bold } /* Generic.Strong */ 23 | .highlight .gu { color: #cb4b16 } /* Generic.Subheading */ 24 | .highlight .gt { color: #586e75 } /* Generic.Traceback */ 25 | .highlight .kc { color: #cb4b16 } /* Keyword.Constant */ 26 | .highlight .kd { color: #268bd2 } /* Keyword.Declaration */ 27 | .highlight .kn { color: #859900 } /* Keyword.Namespace */ 28 | .highlight .kp { color: #859900 } /* Keyword.Pseudo */ 29 | .highlight .kr { color: #268bd2 } /* Keyword.Reserved */ 30 | .highlight .kt { color: #dc322f } /* Keyword.Type */ 31 | .highlight .ld { color: #586e75 } /* Literal.Date */ 32 | .highlight .m { color: #2aa198 } /* Literal.Number */ 33 | .highlight .s { color: #2aa198 } /* Literal.String */ 34 | .highlight .na { color: #586e75 } /* Name.Attribute */ 35 | .highlight .nb { color: #B58900 } /* Name.Builtin */ 36 | .highlight .nc { color: #268bd2 } /* Name.Class */ 37 | .highlight .no { color: #cb4b16 } /* Name.Constant */ 38 | .highlight .nd { color: #268bd2 } /* Name.Decorator */ 39 | .highlight .ni { color: #cb4b16 } /* Name.Entity */ 40 | .highlight .ne { color: #cb4b16 } /* Name.Exception */ 41 | .highlight .nf { color: #268bd2 } /* Name.Function */ 42 | .highlight .nl { color: #586e75 } /* Name.Label */ 43 | .highlight .nn { color: #586e75 } /* Name.Namespace */ 44 | .highlight .nx { color: #586e75 } /* Name.Other */ 45 | .highlight .py { color: #586e75 } /* Name.Property */ 46 | .highlight .nt { color: #268bd2 } /* Name.Tag */ 47 | .highlight .nv { color: #268bd2 } /* Name.Variable */ 48 | .highlight .ow { color: #859900 } /* Operator.Word */ 49 | .highlight .w { color: #586e75 } /* Text.Whitespace */ 50 | .highlight .mf { color: #2aa198 } /* Literal.Number.Float */ 51 | .highlight .mh { color: #2aa198 } /* Literal.Number.Hex */ 52 | .highlight .mi { color: #2aa198 } /* Literal.Number.Integer */ 53 | .highlight .mo { color: #2aa198 } /* Literal.Number.Oct */ 54 | .highlight .sb { color: #93a1a1 } /* Literal.String.Backtick */ 55 | .highlight .sc { color: #2aa198 } /* Literal.String.Char */ 56 | .highlight .sd { color: #586e75 } /* Literal.String.Doc */ 57 | .highlight .s2 { color: #2aa198 } /* Literal.String.Double */ 58 | .highlight .se { color: #cb4b16 } /* Literal.String.Escape */ 59 | .highlight .sh { color: #586e75 } /* Literal.String.Heredoc */ 60 | .highlight .si { color: #2aa198 } /* Literal.String.Interpol */ 61 | .highlight .sx { color: #2aa198 } /* Literal.String.Other */ 62 | .highlight .sr { color: #dc322f } /* Literal.String.Regex */ 63 | .highlight .s1 { color: #2aa198 } /* Literal.String.Single */ 64 | .highlight .ss { color: #2aa198 } /* Literal.String.Symbol */ 65 | .highlight .bp { color: #268bd2 } /* Name.Builtin.Pseudo */ 66 | .highlight .vc { color: #268bd2 } /* Name.Variable.Class */ 67 | .highlight .vg { color: #268bd2 } /* Name.Variable.Global */ 68 | .highlight .vi { color: #268bd2 } /* Name.Variable.Instance */ 69 | .highlight .il { color: #2aa198 } /* Literal.Number.Integer.Long */ 70 | -------------------------------------------------------------------------------- /original-stylesheets/monokai.css: -------------------------------------------------------------------------------- 1 | .highlight .hll { background-color: #49483e } 2 | .highlight { background: #272822; color: #f8f8f2 } 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 .ch { color: #75715e } /* Comment.Hashbang */ 11 | .highlight .cm { color: #75715e } /* Comment.Multiline */ 12 | .highlight .cp { color: #75715e } /* Comment.Preproc */ 13 | .highlight .cpf { color: #75715e } /* Comment.PreprocFile */ 14 | .highlight .c1 { color: #75715e } /* Comment.Single */ 15 | .highlight .cs { color: #75715e } /* Comment.Special */ 16 | .highlight .gd { color: #f92672 } /* Generic.Deleted */ 17 | .highlight .ge { font-style: italic } /* Generic.Emph */ 18 | .highlight .gi { color: #a6e22e } /* Generic.Inserted */ 19 | .highlight .gs { font-weight: bold } /* Generic.Strong */ 20 | .highlight .gu { color: #75715e } /* Generic.Subheading */ 21 | .highlight .kc { color: #66d9ef } /* Keyword.Constant */ 22 | .highlight .kd { color: #66d9ef } /* Keyword.Declaration */ 23 | .highlight .kn { color: #f92672 } /* Keyword.Namespace */ 24 | .highlight .kp { color: #66d9ef } /* Keyword.Pseudo */ 25 | .highlight .kr { color: #66d9ef } /* Keyword.Reserved */ 26 | .highlight .kt { color: #66d9ef } /* Keyword.Type */ 27 | .highlight .ld { color: #e6db74 } /* Literal.Date */ 28 | .highlight .m { color: #ae81ff } /* Literal.Number */ 29 | .highlight .s { color: #e6db74 } /* Literal.String */ 30 | .highlight .na { color: #a6e22e } /* Name.Attribute */ 31 | .highlight .nb { color: #f8f8f2 } /* Name.Builtin */ 32 | .highlight .nc { color: #a6e22e } /* Name.Class */ 33 | .highlight .no { color: #66d9ef } /* Name.Constant */ 34 | .highlight .nd { color: #a6e22e } /* Name.Decorator */ 35 | .highlight .ni { color: #f8f8f2 } /* Name.Entity */ 36 | .highlight .ne { color: #a6e22e } /* Name.Exception */ 37 | .highlight .nf { color: #a6e22e } /* Name.Function */ 38 | .highlight .nl { color: #f8f8f2 } /* Name.Label */ 39 | .highlight .nn { color: #f8f8f2 } /* Name.Namespace */ 40 | .highlight .nx { color: #a6e22e } /* Name.Other */ 41 | .highlight .py { color: #f8f8f2 } /* Name.Property */ 42 | .highlight .nt { color: #f92672 } /* Name.Tag */ 43 | .highlight .nv { color: #f8f8f2 } /* Name.Variable */ 44 | .highlight .ow { color: #f92672 } /* Operator.Word */ 45 | .highlight .w { color: #f8f8f2 } /* Text.Whitespace */ 46 | .highlight .mb { color: #ae81ff } /* Literal.Number.Bin */ 47 | .highlight .mf { color: #ae81ff } /* Literal.Number.Float */ 48 | .highlight .mh { color: #ae81ff } /* Literal.Number.Hex */ 49 | .highlight .mi { color: #ae81ff } /* Literal.Number.Integer */ 50 | .highlight .mo { color: #ae81ff } /* Literal.Number.Oct */ 51 | .highlight .sa { color: #e6db74 } /* Literal.String.Affix */ 52 | .highlight .sb { color: #e6db74 } /* Literal.String.Backtick */ 53 | .highlight .sc { color: #e6db74 } /* Literal.String.Char */ 54 | .highlight .dl { color: #e6db74 } /* Literal.String.Delimiter */ 55 | .highlight .sd { color: #e6db74 } /* Literal.String.Doc */ 56 | .highlight .s2 { color: #e6db74 } /* Literal.String.Double */ 57 | .highlight .se { color: #ae81ff } /* Literal.String.Escape */ 58 | .highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */ 59 | .highlight .si { color: #e6db74 } /* Literal.String.Interpol */ 60 | .highlight .sx { color: #e6db74 } /* Literal.String.Other */ 61 | .highlight .sr { color: #e6db74 } /* Literal.String.Regex */ 62 | .highlight .s1 { color: #e6db74 } /* Literal.String.Single */ 63 | .highlight .ss { color: #e6db74 } /* Literal.String.Symbol */ 64 | .highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */ 65 | .highlight .fm { color: #a6e22e } /* Name.Function.Magic */ 66 | .highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */ 67 | .highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */ 68 | .highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */ 69 | .highlight .vm { color: #f8f8f2 } /* Name.Variable.Magic */ 70 | .highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */ 71 | -------------------------------------------------------------------------------- /original-stylesheets/autumn.css: -------------------------------------------------------------------------------- 1 | .highlight .hll { background-color: #ffffcc } 2 | .highlight { background: #ffffff; } 3 | .highlight .c { color: #aaaaaa; font-style: italic } /* Comment */ 4 | .highlight .err { color: #FF0000; background-color: #FFAAAA } /* Error */ 5 | .highlight .k { color: #0000aa } /* Keyword */ 6 | .highlight .ch { color: #aaaaaa; font-style: italic } /* Comment.Hashbang */ 7 | .highlight .cm { color: #aaaaaa; font-style: italic } /* Comment.Multiline */ 8 | .highlight .cp { color: #4c8317 } /* Comment.Preproc */ 9 | .highlight .cpf { color: #aaaaaa; font-style: italic } /* Comment.PreprocFile */ 10 | .highlight .c1 { color: #aaaaaa; font-style: italic } /* Comment.Single */ 11 | .highlight .cs { color: #0000aa; font-style: italic } /* Comment.Special */ 12 | .highlight .gd { color: #aa0000 } /* Generic.Deleted */ 13 | .highlight .ge { font-style: italic } /* Generic.Emph */ 14 | .highlight .gr { color: #aa0000 } /* Generic.Error */ 15 | .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ 16 | .highlight .gi { color: #00aa00 } /* 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: #800080; font-weight: bold } /* Generic.Subheading */ 21 | .highlight .gt { color: #aa0000 } /* Generic.Traceback */ 22 | .highlight .kc { color: #0000aa } /* Keyword.Constant */ 23 | .highlight .kd { color: #0000aa } /* Keyword.Declaration */ 24 | .highlight .kn { color: #0000aa } /* Keyword.Namespace */ 25 | .highlight .kp { color: #0000aa } /* Keyword.Pseudo */ 26 | .highlight .kr { color: #0000aa } /* Keyword.Reserved */ 27 | .highlight .kt { color: #00aaaa } /* Keyword.Type */ 28 | .highlight .m { color: #009999 } /* Literal.Number */ 29 | .highlight .s { color: #aa5500 } /* Literal.String */ 30 | .highlight .na { color: #1e90ff } /* Name.Attribute */ 31 | .highlight .nb { color: #00aaaa } /* Name.Builtin */ 32 | .highlight .nc { color: #00aa00; text-decoration: underline } /* Name.Class */ 33 | .highlight .no { color: #aa0000 } /* Name.Constant */ 34 | .highlight .nd { color: #888888 } /* Name.Decorator */ 35 | .highlight .ni { color: #880000; font-weight: bold } /* Name.Entity */ 36 | .highlight .nf { color: #00aa00 } /* Name.Function */ 37 | .highlight .nn { color: #00aaaa; text-decoration: underline } /* Name.Namespace */ 38 | .highlight .nt { color: #1e90ff; font-weight: bold } /* Name.Tag */ 39 | .highlight .nv { color: #aa0000 } /* Name.Variable */ 40 | .highlight .ow { color: #0000aa } /* Operator.Word */ 41 | .highlight .w { color: #bbbbbb } /* Text.Whitespace */ 42 | .highlight .mb { color: #009999 } /* Literal.Number.Bin */ 43 | .highlight .mf { color: #009999 } /* Literal.Number.Float */ 44 | .highlight .mh { color: #009999 } /* Literal.Number.Hex */ 45 | .highlight .mi { color: #009999 } /* Literal.Number.Integer */ 46 | .highlight .mo { color: #009999 } /* Literal.Number.Oct */ 47 | .highlight .sa { color: #aa5500 } /* Literal.String.Affix */ 48 | .highlight .sb { color: #aa5500 } /* Literal.String.Backtick */ 49 | .highlight .sc { color: #aa5500 } /* Literal.String.Char */ 50 | .highlight .dl { color: #aa5500 } /* Literal.String.Delimiter */ 51 | .highlight .sd { color: #aa5500 } /* Literal.String.Doc */ 52 | .highlight .s2 { color: #aa5500 } /* Literal.String.Double */ 53 | .highlight .se { color: #aa5500 } /* Literal.String.Escape */ 54 | .highlight .sh { color: #aa5500 } /* Literal.String.Heredoc */ 55 | .highlight .si { color: #aa5500 } /* Literal.String.Interpol */ 56 | .highlight .sx { color: #aa5500 } /* Literal.String.Other */ 57 | .highlight .sr { color: #009999 } /* Literal.String.Regex */ 58 | .highlight .s1 { color: #aa5500 } /* Literal.String.Single */ 59 | .highlight .ss { color: #0000aa } /* Literal.String.Symbol */ 60 | .highlight .bp { color: #00aaaa } /* Name.Builtin.Pseudo */ 61 | .highlight .fm { color: #00aa00 } /* Name.Function.Magic */ 62 | .highlight .vc { color: #aa0000 } /* Name.Variable.Class */ 63 | .highlight .vg { color: #aa0000 } /* Name.Variable.Global */ 64 | .highlight .vi { color: #aa0000 } /* Name.Variable.Instance */ 65 | .highlight .vm { color: #aa0000 } /* Name.Variable.Magic */ 66 | .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */ 67 | -------------------------------------------------------------------------------- /original-stylesheets/perldoc.css: -------------------------------------------------------------------------------- 1 | .highlight .hll { background-color: #ffffcc } 2 | .highlight { background: #eeeedd; } 3 | .highlight .c { color: #228B22 } /* Comment */ 4 | .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ 5 | .highlight .k { color: #8B008B; font-weight: bold } /* Keyword */ 6 | .highlight .ch { color: #228B22 } /* Comment.Hashbang */ 7 | .highlight .cm { color: #228B22 } /* Comment.Multiline */ 8 | .highlight .cp { color: #1e889b } /* Comment.Preproc */ 9 | .highlight .cpf { color: #228B22 } /* Comment.PreprocFile */ 10 | .highlight .c1 { color: #228B22 } /* Comment.Single */ 11 | .highlight .cs { color: #8B008B; font-weight: bold } /* Comment.Special */ 12 | .highlight .gd { color: #aa0000 } /* Generic.Deleted */ 13 | .highlight .ge { font-style: italic } /* Generic.Emph */ 14 | .highlight .gr { color: #aa0000 } /* Generic.Error */ 15 | .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ 16 | .highlight .gi { color: #00aa00 } /* 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: #800080; font-weight: bold } /* Generic.Subheading */ 21 | .highlight .gt { color: #aa0000 } /* Generic.Traceback */ 22 | .highlight .kc { color: #8B008B; font-weight: bold } /* Keyword.Constant */ 23 | .highlight .kd { color: #8B008B; font-weight: bold } /* Keyword.Declaration */ 24 | .highlight .kn { color: #8B008B; font-weight: bold } /* Keyword.Namespace */ 25 | .highlight .kp { color: #8B008B; font-weight: bold } /* Keyword.Pseudo */ 26 | .highlight .kr { color: #8B008B; font-weight: bold } /* Keyword.Reserved */ 27 | .highlight .kt { color: #00688B; font-weight: bold } /* Keyword.Type */ 28 | .highlight .m { color: #B452CD } /* Literal.Number */ 29 | .highlight .s { color: #CD5555 } /* Literal.String */ 30 | .highlight .na { color: #658b00 } /* Name.Attribute */ 31 | .highlight .nb { color: #658b00 } /* Name.Builtin */ 32 | .highlight .nc { color: #008b45; font-weight: bold } /* Name.Class */ 33 | .highlight .no { color: #00688B } /* Name.Constant */ 34 | .highlight .nd { color: #707a7c } /* Name.Decorator */ 35 | .highlight .ne { color: #008b45; font-weight: bold } /* Name.Exception */ 36 | .highlight .nf { color: #008b45 } /* Name.Function */ 37 | .highlight .nn { color: #008b45; text-decoration: underline } /* Name.Namespace */ 38 | .highlight .nt { color: #8B008B; font-weight: bold } /* Name.Tag */ 39 | .highlight .nv { color: #00688B } /* Name.Variable */ 40 | .highlight .ow { color: #8B008B } /* Operator.Word */ 41 | .highlight .w { color: #bbbbbb } /* Text.Whitespace */ 42 | .highlight .mb { color: #B452CD } /* Literal.Number.Bin */ 43 | .highlight .mf { color: #B452CD } /* Literal.Number.Float */ 44 | .highlight .mh { color: #B452CD } /* Literal.Number.Hex */ 45 | .highlight .mi { color: #B452CD } /* Literal.Number.Integer */ 46 | .highlight .mo { color: #B452CD } /* Literal.Number.Oct */ 47 | .highlight .sa { color: #CD5555 } /* Literal.String.Affix */ 48 | .highlight .sb { color: #CD5555 } /* Literal.String.Backtick */ 49 | .highlight .sc { color: #CD5555 } /* Literal.String.Char */ 50 | .highlight .dl { color: #CD5555 } /* Literal.String.Delimiter */ 51 | .highlight .sd { color: #CD5555 } /* Literal.String.Doc */ 52 | .highlight .s2 { color: #CD5555 } /* Literal.String.Double */ 53 | .highlight .se { color: #CD5555 } /* Literal.String.Escape */ 54 | .highlight .sh { color: #1c7e71; font-style: italic } /* Literal.String.Heredoc */ 55 | .highlight .si { color: #CD5555 } /* Literal.String.Interpol */ 56 | .highlight .sx { color: #cb6c20 } /* Literal.String.Other */ 57 | .highlight .sr { color: #1c7e71 } /* Literal.String.Regex */ 58 | .highlight .s1 { color: #CD5555 } /* Literal.String.Single */ 59 | .highlight .ss { color: #CD5555 } /* Literal.String.Symbol */ 60 | .highlight .bp { color: #658b00 } /* Name.Builtin.Pseudo */ 61 | .highlight .fm { color: #008b45 } /* Name.Function.Magic */ 62 | .highlight .vc { color: #00688B } /* Name.Variable.Class */ 63 | .highlight .vg { color: #00688B } /* Name.Variable.Global */ 64 | .highlight .vi { color: #00688B } /* Name.Variable.Instance */ 65 | .highlight .vm { color: #00688B } /* Name.Variable.Magic */ 66 | .highlight .il { color: #B452CD } /* Literal.Number.Integer.Long */ 67 | -------------------------------------------------------------------------------- /original-stylesheets/trac.css: -------------------------------------------------------------------------------- 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 */ 68 | -------------------------------------------------------------------------------- /original-stylesheets/default.css: -------------------------------------------------------------------------------- 1 | .highlight .hll { background-color: #ffffcc } 2 | .highlight { background: #f8f8f8; } 3 | .highlight .c { color: #408080; font-style: italic } /* Comment */ 4 | .highlight .err { border: 1px solid #FF0000 } /* Error */ 5 | .highlight .k { color: #008000; font-weight: bold } /* Keyword */ 6 | .highlight .o { color: #666666 } /* Operator */ 7 | .highlight .ch { color: #408080; font-style: italic } /* Comment.Hashbang */ 8 | .highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */ 9 | .highlight .cp { color: #BC7A00 } /* Comment.Preproc */ 10 | .highlight .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */ 11 | .highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */ 12 | .highlight .cs { color: #408080; 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: #000080; 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: #008000; font-weight: bold } /* Keyword.Constant */ 24 | .highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ 25 | .highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ 26 | .highlight .kp { color: #008000 } /* Keyword.Pseudo */ 27 | .highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ 28 | .highlight .kt { color: #B00040 } /* Keyword.Type */ 29 | .highlight .m { color: #666666 } /* Literal.Number */ 30 | .highlight .s { color: #BA2121 } /* Literal.String */ 31 | .highlight .na { color: #7D9029 } /* Name.Attribute */ 32 | .highlight .nb { color: #008000 } /* Name.Builtin */ 33 | .highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ 34 | .highlight .no { color: #880000 } /* Name.Constant */ 35 | .highlight .nd { color: #AA22FF } /* Name.Decorator */ 36 | .highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ 37 | .highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ 38 | .highlight .nf { color: #0000FF } /* Name.Function */ 39 | .highlight .nl { color: #A0A000 } /* Name.Label */ 40 | .highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ 41 | .highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ 42 | .highlight .nv { color: #19177C } /* Name.Variable */ 43 | .highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ 44 | .highlight .w { color: #bbbbbb } /* Text.Whitespace */ 45 | .highlight .mb { color: #666666 } /* Literal.Number.Bin */ 46 | .highlight .mf { color: #666666 } /* Literal.Number.Float */ 47 | .highlight .mh { color: #666666 } /* Literal.Number.Hex */ 48 | .highlight .mi { color: #666666 } /* Literal.Number.Integer */ 49 | .highlight .mo { color: #666666 } /* Literal.Number.Oct */ 50 | .highlight .sa { color: #BA2121 } /* Literal.String.Affix */ 51 | .highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ 52 | .highlight .sc { color: #BA2121 } /* Literal.String.Char */ 53 | .highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */ 54 | .highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ 55 | .highlight .s2 { color: #BA2121 } /* Literal.String.Double */ 56 | .highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ 57 | .highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ 58 | .highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ 59 | .highlight .sx { color: #008000 } /* Literal.String.Other */ 60 | .highlight .sr { color: #BB6688 } /* Literal.String.Regex */ 61 | .highlight .s1 { color: #BA2121 } /* Literal.String.Single */ 62 | .highlight .ss { color: #19177C } /* Literal.String.Symbol */ 63 | .highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ 64 | .highlight .fm { color: #0000FF } /* Name.Function.Magic */ 65 | .highlight .vc { color: #19177C } /* Name.Variable.Class */ 66 | .highlight .vg { color: #19177C } /* Name.Variable.Global */ 67 | .highlight .vi { color: #19177C } /* Name.Variable.Instance */ 68 | .highlight .vm { color: #19177C } /* Name.Variable.Magic */ 69 | .highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ 70 | -------------------------------------------------------------------------------- /original-stylesheets/emacs.css: -------------------------------------------------------------------------------- 1 | .highlight .hll { background-color: #ffffcc } 2 | .highlight { background: #f8f8f8; } 3 | .highlight .c { color: #008800; font-style: italic } /* Comment */ 4 | .highlight .err { border: 1px solid #FF0000 } /* Error */ 5 | .highlight .k { color: #AA22FF; font-weight: bold } /* Keyword */ 6 | .highlight .o { color: #666666 } /* Operator */ 7 | .highlight .ch { color: #008800; font-style: italic } /* Comment.Hashbang */ 8 | .highlight .cm { color: #008800; font-style: italic } /* Comment.Multiline */ 9 | .highlight .cp { color: #008800 } /* Comment.Preproc */ 10 | .highlight .cpf { color: #008800; font-style: italic } /* Comment.PreprocFile */ 11 | .highlight .c1 { color: #008800; font-style: italic } /* Comment.Single */ 12 | .highlight .cs { color: #008800; font-weight: bold } /* 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: #000080; 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: #AA22FF; font-weight: bold } /* Keyword.Constant */ 24 | .highlight .kd { color: #AA22FF; font-weight: bold } /* Keyword.Declaration */ 25 | .highlight .kn { color: #AA22FF; font-weight: bold } /* Keyword.Namespace */ 26 | .highlight .kp { color: #AA22FF } /* Keyword.Pseudo */ 27 | .highlight .kr { color: #AA22FF; font-weight: bold } /* Keyword.Reserved */ 28 | .highlight .kt { color: #00BB00; font-weight: bold } /* Keyword.Type */ 29 | .highlight .m { color: #666666 } /* Literal.Number */ 30 | .highlight .s { color: #BB4444 } /* Literal.String */ 31 | .highlight .na { color: #BB4444 } /* Name.Attribute */ 32 | .highlight .nb { color: #AA22FF } /* Name.Builtin */ 33 | .highlight .nc { color: #0000FF } /* Name.Class */ 34 | .highlight .no { color: #880000 } /* Name.Constant */ 35 | .highlight .nd { color: #AA22FF } /* Name.Decorator */ 36 | .highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ 37 | .highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ 38 | .highlight .nf { color: #00A000 } /* Name.Function */ 39 | .highlight .nl { color: #A0A000 } /* Name.Label */ 40 | .highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ 41 | .highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ 42 | .highlight .nv { color: #B8860B } /* Name.Variable */ 43 | .highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ 44 | .highlight .w { color: #bbbbbb } /* Text.Whitespace */ 45 | .highlight .mb { color: #666666 } /* Literal.Number.Bin */ 46 | .highlight .mf { color: #666666 } /* Literal.Number.Float */ 47 | .highlight .mh { color: #666666 } /* Literal.Number.Hex */ 48 | .highlight .mi { color: #666666 } /* Literal.Number.Integer */ 49 | .highlight .mo { color: #666666 } /* Literal.Number.Oct */ 50 | .highlight .sa { color: #BB4444 } /* Literal.String.Affix */ 51 | .highlight .sb { color: #BB4444 } /* Literal.String.Backtick */ 52 | .highlight .sc { color: #BB4444 } /* Literal.String.Char */ 53 | .highlight .dl { color: #BB4444 } /* Literal.String.Delimiter */ 54 | .highlight .sd { color: #BB4444; font-style: italic } /* Literal.String.Doc */ 55 | .highlight .s2 { color: #BB4444 } /* Literal.String.Double */ 56 | .highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ 57 | .highlight .sh { color: #BB4444 } /* Literal.String.Heredoc */ 58 | .highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ 59 | .highlight .sx { color: #008000 } /* Literal.String.Other */ 60 | .highlight .sr { color: #BB6688 } /* Literal.String.Regex */ 61 | .highlight .s1 { color: #BB4444 } /* Literal.String.Single */ 62 | .highlight .ss { color: #B8860B } /* Literal.String.Symbol */ 63 | .highlight .bp { color: #AA22FF } /* Name.Builtin.Pseudo */ 64 | .highlight .fm { color: #00A000 } /* Name.Function.Magic */ 65 | .highlight .vc { color: #B8860B } /* Name.Variable.Class */ 66 | .highlight .vg { color: #B8860B } /* Name.Variable.Global */ 67 | .highlight .vi { color: #B8860B } /* Name.Variable.Instance */ 68 | .highlight .vm { color: #B8860B } /* Name.Variable.Magic */ 69 | .highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ 70 | -------------------------------------------------------------------------------- /original-stylesheets/friendly.css: -------------------------------------------------------------------------------- 1 | .highlight .hll { background-color: #ffffcc } 2 | .highlight { background: #f0f0f0; } 3 | .highlight .c { color: #60a0b0; font-style: italic } /* Comment */ 4 | .highlight .err { border: 1px solid #FF0000 } /* Error */ 5 | .highlight .k { color: #007020; font-weight: bold } /* Keyword */ 6 | .highlight .o { color: #666666 } /* Operator */ 7 | .highlight .ch { color: #60a0b0; font-style: italic } /* Comment.Hashbang */ 8 | .highlight .cm { color: #60a0b0; font-style: italic } /* Comment.Multiline */ 9 | .highlight .cp { color: #007020 } /* Comment.Preproc */ 10 | .highlight .cpf { color: #60a0b0; font-style: italic } /* Comment.PreprocFile */ 11 | .highlight .c1 { color: #60a0b0; font-style: italic } /* Comment.Single */ 12 | .highlight .cs { color: #60a0b0; background-color: #fff0f0 } /* 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: #007020; font-weight: bold } /* Keyword.Constant */ 24 | .highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */ 25 | .highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */ 26 | .highlight .kp { color: #007020 } /* Keyword.Pseudo */ 27 | .highlight .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */ 28 | .highlight .kt { color: #902000 } /* Keyword.Type */ 29 | .highlight .m { color: #40a070 } /* Literal.Number */ 30 | .highlight .s { color: #4070a0 } /* Literal.String */ 31 | .highlight .na { color: #4070a0 } /* Name.Attribute */ 32 | .highlight .nb { color: #007020 } /* Name.Builtin */ 33 | .highlight .nc { color: #0e84b5; font-weight: bold } /* Name.Class */ 34 | .highlight .no { color: #60add5 } /* Name.Constant */ 35 | .highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */ 36 | .highlight .ni { color: #d55537; font-weight: bold } /* Name.Entity */ 37 | .highlight .ne { color: #007020 } /* Name.Exception */ 38 | .highlight .nf { color: #06287e } /* Name.Function */ 39 | .highlight .nl { color: #002070; font-weight: bold } /* Name.Label */ 40 | .highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */ 41 | .highlight .nt { color: #062873; font-weight: bold } /* Name.Tag */ 42 | .highlight .nv { color: #bb60d5 } /* Name.Variable */ 43 | .highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */ 44 | .highlight .w { color: #bbbbbb } /* Text.Whitespace */ 45 | .highlight .mb { color: #40a070 } /* Literal.Number.Bin */ 46 | .highlight .mf { color: #40a070 } /* Literal.Number.Float */ 47 | .highlight .mh { color: #40a070 } /* Literal.Number.Hex */ 48 | .highlight .mi { color: #40a070 } /* Literal.Number.Integer */ 49 | .highlight .mo { color: #40a070 } /* Literal.Number.Oct */ 50 | .highlight .sa { color: #4070a0 } /* Literal.String.Affix */ 51 | .highlight .sb { color: #4070a0 } /* Literal.String.Backtick */ 52 | .highlight .sc { color: #4070a0 } /* Literal.String.Char */ 53 | .highlight .dl { color: #4070a0 } /* Literal.String.Delimiter */ 54 | .highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */ 55 | .highlight .s2 { color: #4070a0 } /* Literal.String.Double */ 56 | .highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */ 57 | .highlight .sh { color: #4070a0 } /* Literal.String.Heredoc */ 58 | .highlight .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */ 59 | .highlight .sx { color: #c65d09 } /* Literal.String.Other */ 60 | .highlight .sr { color: #235388 } /* Literal.String.Regex */ 61 | .highlight .s1 { color: #4070a0 } /* Literal.String.Single */ 62 | .highlight .ss { color: #517918 } /* Literal.String.Symbol */ 63 | .highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */ 64 | .highlight .fm { color: #06287e } /* Name.Function.Magic */ 65 | .highlight .vc { color: #bb60d5 } /* Name.Variable.Class */ 66 | .highlight .vg { color: #bb60d5 } /* Name.Variable.Global */ 67 | .highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */ 68 | .highlight .vm { color: #bb60d5 } /* Name.Variable.Magic */ 69 | .highlight .il { color: #40a070 } /* Literal.Number.Integer.Long */ 70 | -------------------------------------------------------------------------------- /original-stylesheets/manni.css: -------------------------------------------------------------------------------- 1 | .highlight .hll { background-color: #ffffcc } 2 | .highlight { background: #f0f3f3; } 3 | .highlight .c { color: #0099FF; font-style: italic } /* Comment */ 4 | .highlight .err { color: #AA0000; background-color: #FFAAAA } /* Error */ 5 | .highlight .k { color: #006699; font-weight: bold } /* Keyword */ 6 | .highlight .o { color: #555555 } /* Operator */ 7 | .highlight .ch { color: #0099FF; font-style: italic } /* Comment.Hashbang */ 8 | .highlight .cm { color: #0099FF; font-style: italic } /* Comment.Multiline */ 9 | .highlight .cp { color: #009999 } /* Comment.Preproc */ 10 | .highlight .cpf { color: #0099FF; font-style: italic } /* Comment.PreprocFile */ 11 | .highlight .c1 { color: #0099FF; font-style: italic } /* Comment.Single */ 12 | .highlight .cs { color: #0099FF; font-weight: bold; font-style: italic } /* Comment.Special */ 13 | .highlight .gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */ 14 | .highlight .ge { font-style: italic } /* Generic.Emph */ 15 | .highlight .gr { color: #FF0000 } /* Generic.Error */ 16 | .highlight .gh { color: #003300; font-weight: bold } /* Generic.Heading */ 17 | .highlight .gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */ 18 | .highlight .go { color: #AAAAAA } /* Generic.Output */ 19 | .highlight .gp { color: #000099; font-weight: bold } /* Generic.Prompt */ 20 | .highlight .gs { font-weight: bold } /* Generic.Strong */ 21 | .highlight .gu { color: #003300; font-weight: bold } /* Generic.Subheading */ 22 | .highlight .gt { color: #99CC66 } /* Generic.Traceback */ 23 | .highlight .kc { color: #006699; font-weight: bold } /* Keyword.Constant */ 24 | .highlight .kd { color: #006699; font-weight: bold } /* Keyword.Declaration */ 25 | .highlight .kn { color: #006699; font-weight: bold } /* Keyword.Namespace */ 26 | .highlight .kp { color: #006699 } /* Keyword.Pseudo */ 27 | .highlight .kr { color: #006699; font-weight: bold } /* Keyword.Reserved */ 28 | .highlight .kt { color: #007788; font-weight: bold } /* Keyword.Type */ 29 | .highlight .m { color: #FF6600 } /* Literal.Number */ 30 | .highlight .s { color: #CC3300 } /* Literal.String */ 31 | .highlight .na { color: #330099 } /* Name.Attribute */ 32 | .highlight .nb { color: #336666 } /* Name.Builtin */ 33 | .highlight .nc { color: #00AA88; font-weight: bold } /* Name.Class */ 34 | .highlight .no { color: #336600 } /* Name.Constant */ 35 | .highlight .nd { color: #9999FF } /* Name.Decorator */ 36 | .highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ 37 | .highlight .ne { color: #CC0000; font-weight: bold } /* Name.Exception */ 38 | .highlight .nf { color: #CC00FF } /* Name.Function */ 39 | .highlight .nl { color: #9999FF } /* Name.Label */ 40 | .highlight .nn { color: #00CCFF; font-weight: bold } /* Name.Namespace */ 41 | .highlight .nt { color: #330099; font-weight: bold } /* Name.Tag */ 42 | .highlight .nv { color: #003333 } /* Name.Variable */ 43 | .highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */ 44 | .highlight .w { color: #bbbbbb } /* Text.Whitespace */ 45 | .highlight .mb { color: #FF6600 } /* Literal.Number.Bin */ 46 | .highlight .mf { color: #FF6600 } /* Literal.Number.Float */ 47 | .highlight .mh { color: #FF6600 } /* Literal.Number.Hex */ 48 | .highlight .mi { color: #FF6600 } /* Literal.Number.Integer */ 49 | .highlight .mo { color: #FF6600 } /* Literal.Number.Oct */ 50 | .highlight .sa { color: #CC3300 } /* Literal.String.Affix */ 51 | .highlight .sb { color: #CC3300 } /* Literal.String.Backtick */ 52 | .highlight .sc { color: #CC3300 } /* Literal.String.Char */ 53 | .highlight .dl { color: #CC3300 } /* Literal.String.Delimiter */ 54 | .highlight .sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */ 55 | .highlight .s2 { color: #CC3300 } /* Literal.String.Double */ 56 | .highlight .se { color: #CC3300; font-weight: bold } /* Literal.String.Escape */ 57 | .highlight .sh { color: #CC3300 } /* Literal.String.Heredoc */ 58 | .highlight .si { color: #AA0000 } /* Literal.String.Interpol */ 59 | .highlight .sx { color: #CC3300 } /* Literal.String.Other */ 60 | .highlight .sr { color: #33AAAA } /* Literal.String.Regex */ 61 | .highlight .s1 { color: #CC3300 } /* Literal.String.Single */ 62 | .highlight .ss { color: #FFCC33 } /* Literal.String.Symbol */ 63 | .highlight .bp { color: #336666 } /* Name.Builtin.Pseudo */ 64 | .highlight .fm { color: #CC00FF } /* Name.Function.Magic */ 65 | .highlight .vc { color: #003333 } /* Name.Variable.Class */ 66 | .highlight .vg { color: #003333 } /* Name.Variable.Global */ 67 | .highlight .vi { color: #003333 } /* Name.Variable.Instance */ 68 | .highlight .vm { color: #003333 } /* Name.Variable.Magic */ 69 | .highlight .il { color: #FF6600 } /* Literal.Number.Integer.Long */ 70 | -------------------------------------------------------------------------------- /original-stylesheets/vim.css: -------------------------------------------------------------------------------- 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 */ 79 | -------------------------------------------------------------------------------- /original-stylesheets/colorful.css: -------------------------------------------------------------------------------- 1 | .highlight .hll { background-color: #ffffcc } 2 | .highlight { background: #ffffff; } 3 | .highlight .c { color: #888888 } /* Comment */ 4 | .highlight .err { color: #FF0000; background-color: #FFAAAA } /* Error */ 5 | .highlight .k { color: #008800; font-weight: bold } /* Keyword */ 6 | .highlight .o { color: #333333 } /* Operator */ 7 | .highlight .ch { color: #888888 } /* Comment.Hashbang */ 8 | .highlight .cm { color: #888888 } /* Comment.Multiline */ 9 | .highlight .cp { color: #557799 } /* Comment.Preproc */ 10 | .highlight .cpf { color: #888888 } /* Comment.PreprocFile */ 11 | .highlight .c1 { color: #888888 } /* Comment.Single */ 12 | .highlight .cs { color: #cc0000; font-weight: bold } /* 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: #008800; font-weight: bold } /* Keyword.Constant */ 24 | .highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */ 25 | .highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */ 26 | .highlight .kp { color: #003388; font-weight: bold } /* Keyword.Pseudo */ 27 | .highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */ 28 | .highlight .kt { color: #333399; font-weight: bold } /* Keyword.Type */ 29 | .highlight .m { color: #6600EE; font-weight: bold } /* Literal.Number */ 30 | .highlight .s { background-color: #fff0f0 } /* Literal.String */ 31 | .highlight .na { color: #0000CC } /* Name.Attribute */ 32 | .highlight .nb { color: #007020 } /* Name.Builtin */ 33 | .highlight .nc { color: #BB0066; font-weight: bold } /* Name.Class */ 34 | .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */ 35 | .highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */ 36 | .highlight .ni { color: #880000; font-weight: bold } /* Name.Entity */ 37 | .highlight .ne { color: #FF0000; font-weight: bold } /* Name.Exception */ 38 | .highlight .nf { color: #0066BB; 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: #996633 } /* 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: #0000DD; font-weight: bold } /* Literal.Number.Integer */ 49 | .highlight .mo { color: #4400EE; font-weight: bold } /* Literal.Number.Oct */ 50 | .highlight .sa { background-color: #fff0f0 } /* Literal.String.Affix */ 51 | .highlight .sb { background-color: #fff0f0 } /* Literal.String.Backtick */ 52 | .highlight .sc { color: #0044DD } /* Literal.String.Char */ 53 | .highlight .dl { background-color: #fff0f0 } /* Literal.String.Delimiter */ 54 | .highlight .sd { color: #DD4422 } /* Literal.String.Doc */ 55 | .highlight .s2 { background-color: #fff0f0 } /* Literal.String.Double */ 56 | .highlight .se { color: #666666; font-weight: bold; background-color: #fff0f0 } /* Literal.String.Escape */ 57 | .highlight .sh { background-color: #fff0f0 } /* Literal.String.Heredoc */ 58 | .highlight .si { background-color: #eeeeee } /* Literal.String.Interpol */ 59 | .highlight .sx { color: #DD2200; background-color: #fff0f0 } /* Literal.String.Other */ 60 | .highlight .sr { color: #000000; background-color: #fff0ff } /* Literal.String.Regex */ 61 | .highlight .s1 { background-color: #fff0f0 } /* Literal.String.Single */ 62 | .highlight .ss { color: #AA6600 } /* Literal.String.Symbol */ 63 | .highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */ 64 | .highlight .fm { color: #0066BB; font-weight: bold } /* Name.Function.Magic */ 65 | .highlight .vc { color: #336699 } /* Name.Variable.Class */ 66 | .highlight .vg { color: #dd7700; font-weight: bold } /* Name.Variable.Global */ 67 | .highlight .vi { color: #3333BB } /* Name.Variable.Instance */ 68 | .highlight .vm { color: #996633 } /* Name.Variable.Magic */ 69 | .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ 70 | -------------------------------------------------------------------------------- /original-stylesheets/murphy.css: -------------------------------------------------------------------------------- 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 */ 70 | -------------------------------------------------------------------------------- /original-stylesheets/pastie.css: -------------------------------------------------------------------------------- 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 */ 69 | -------------------------------------------------------------------------------- /original-stylesheets/native.css: -------------------------------------------------------------------------------- 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 */ 79 | -------------------------------------------------------------------------------- /original-stylesheets/tango.css: -------------------------------------------------------------------------------- 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 */ 78 | -------------------------------------------------------------------------------- /original-stylesheets/fruity.css: -------------------------------------------------------------------------------- 1 | .highlight .hll { background-color: #333333 } 2 | .highlight { background: #111111; color: #ffffff } 3 | .highlight .c { color: #008800; font-style: italic; background-color: #0f140f } /* Comment */ 4 | .highlight .err { color: #ffffff } /* Error */ 5 | .highlight .esc { color: #ffffff } /* Escape */ 6 | .highlight .g { color: #ffffff } /* Generic */ 7 | .highlight .k { color: #fb660a; font-weight: bold } /* Keyword */ 8 | .highlight .l { color: #ffffff } /* Literal */ 9 | .highlight .n { color: #ffffff } /* Name */ 10 | .highlight .o { color: #ffffff } /* Operator */ 11 | .highlight .x { color: #ffffff } /* Other */ 12 | .highlight .p { color: #ffffff } /* Punctuation */ 13 | .highlight .ch { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Hashbang */ 14 | .highlight .cm { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Multiline */ 15 | .highlight .cp { color: #ff0007; font-weight: bold; font-style: italic; background-color: #0f140f } /* Comment.Preproc */ 16 | .highlight .cpf { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.PreprocFile */ 17 | .highlight .c1 { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Single */ 18 | .highlight .cs { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Special */ 19 | .highlight .gd { color: #ffffff } /* Generic.Deleted */ 20 | .highlight .ge { color: #ffffff } /* Generic.Emph */ 21 | .highlight .gr { color: #ffffff } /* Generic.Error */ 22 | .highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */ 23 | .highlight .gi { color: #ffffff } /* Generic.Inserted */ 24 | .highlight .go { color: #444444; background-color: #222222 } /* Generic.Output */ 25 | .highlight .gp { color: #ffffff } /* Generic.Prompt */ 26 | .highlight .gs { color: #ffffff } /* Generic.Strong */ 27 | .highlight .gu { color: #ffffff; font-weight: bold } /* Generic.Subheading */ 28 | .highlight .gt { color: #ffffff } /* Generic.Traceback */ 29 | .highlight .kc { color: #fb660a; font-weight: bold } /* Keyword.Constant */ 30 | .highlight .kd { color: #fb660a; font-weight: bold } /* Keyword.Declaration */ 31 | .highlight .kn { color: #fb660a; font-weight: bold } /* Keyword.Namespace */ 32 | .highlight .kp { color: #fb660a } /* Keyword.Pseudo */ 33 | .highlight .kr { color: #fb660a; font-weight: bold } /* Keyword.Reserved */ 34 | .highlight .kt { color: #cdcaa9; font-weight: bold } /* Keyword.Type */ 35 | .highlight .ld { color: #ffffff } /* Literal.Date */ 36 | .highlight .m { color: #0086f7; font-weight: bold } /* Literal.Number */ 37 | .highlight .s { color: #0086d2 } /* Literal.String */ 38 | .highlight .na { color: #ff0086; font-weight: bold } /* Name.Attribute */ 39 | .highlight .nb { color: #ffffff } /* Name.Builtin */ 40 | .highlight .nc { color: #ffffff } /* Name.Class */ 41 | .highlight .no { color: #0086d2 } /* Name.Constant */ 42 | .highlight .nd { color: #ffffff } /* Name.Decorator */ 43 | .highlight .ni { color: #ffffff } /* Name.Entity */ 44 | .highlight .ne { color: #ffffff } /* Name.Exception */ 45 | .highlight .nf { color: #ff0086; font-weight: bold } /* Name.Function */ 46 | .highlight .nl { color: #ffffff } /* Name.Label */ 47 | .highlight .nn { color: #ffffff } /* Name.Namespace */ 48 | .highlight .nx { color: #ffffff } /* Name.Other */ 49 | .highlight .py { color: #ffffff } /* Name.Property */ 50 | .highlight .nt { color: #fb660a; font-weight: bold } /* Name.Tag */ 51 | .highlight .nv { color: #fb660a } /* Name.Variable */ 52 | .highlight .ow { color: #ffffff } /* Operator.Word */ 53 | .highlight .w { color: #888888 } /* Text.Whitespace */ 54 | .highlight .mb { color: #0086f7; font-weight: bold } /* Literal.Number.Bin */ 55 | .highlight .mf { color: #0086f7; font-weight: bold } /* Literal.Number.Float */ 56 | .highlight .mh { color: #0086f7; font-weight: bold } /* Literal.Number.Hex */ 57 | .highlight .mi { color: #0086f7; font-weight: bold } /* Literal.Number.Integer */ 58 | .highlight .mo { color: #0086f7; font-weight: bold } /* Literal.Number.Oct */ 59 | .highlight .sa { color: #0086d2 } /* Literal.String.Affix */ 60 | .highlight .sb { color: #0086d2 } /* Literal.String.Backtick */ 61 | .highlight .sc { color: #0086d2 } /* Literal.String.Char */ 62 | .highlight .dl { color: #0086d2 } /* Literal.String.Delimiter */ 63 | .highlight .sd { color: #0086d2 } /* Literal.String.Doc */ 64 | .highlight .s2 { color: #0086d2 } /* Literal.String.Double */ 65 | .highlight .se { color: #0086d2 } /* Literal.String.Escape */ 66 | .highlight .sh { color: #0086d2 } /* Literal.String.Heredoc */ 67 | .highlight .si { color: #0086d2 } /* Literal.String.Interpol */ 68 | .highlight .sx { color: #0086d2 } /* Literal.String.Other */ 69 | .highlight .sr { color: #0086d2 } /* Literal.String.Regex */ 70 | .highlight .s1 { color: #0086d2 } /* Literal.String.Single */ 71 | .highlight .ss { color: #0086d2 } /* Literal.String.Symbol */ 72 | .highlight .bp { color: #ffffff } /* Name.Builtin.Pseudo */ 73 | .highlight .fm { color: #ff0086; font-weight: bold } /* Name.Function.Magic */ 74 | .highlight .vc { color: #fb660a } /* Name.Variable.Class */ 75 | .highlight .vg { color: #fb660a } /* Name.Variable.Global */ 76 | .highlight .vi { color: #fb660a } /* Name.Variable.Instance */ 77 | .highlight .vm { color: #fb660a } /* Name.Variable.Magic */ 78 | .highlight .il { color: #0086f7; font-weight: bold } /* Literal.Number.Integer.Long */ 79 | --------------------------------------------------------------------------------