slideoff 0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +3 -0
- data/MIT-LICENSE +20 -0
- data/README.md +218 -0
- data/bin/slideoff +127 -0
- data/lib/slideoff/config_builder.rb +60 -0
- data/lib/slideoff/flickr_api.rb +50 -0
- data/lib/slideoff/flickr_image.rb +92 -0
- data/lib/slideoff/markdown.rb +145 -0
- data/lib/slideoff/presentation.rb +90 -0
- data/lib/slideoff/remote_api.rb +53 -0
- data/lib/slideoff/routes.rb +20 -0
- data/lib/slideoff/server.rb +50 -0
- data/lib/slideoff/slides_api.rb +59 -0
- data/lib/slideoff/utils.rb +453 -0
- data/lib/slideoff.rb +15 -0
- data/themes/3d_slideshow/README +2 -0
- data/themes/3d_slideshow/css/main.css +232 -0
- data/themes/3d_slideshow/css/reset.css +57 -0
- data/themes/3d_slideshow/index.erb +31 -0
- data/themes/3d_slideshow/js/slideshow.js +288 -0
- data/themes/CSSS/README +2 -0
- data/themes/CSSS/css/slideshow.css +304 -0
- data/themes/CSSS/css/theme.css +250 -0
- data/themes/CSSS/images/rainbow-wood.jpg +0 -0
- data/themes/CSSS/index.erb +36 -0
- data/themes/CSSS/js/classList.js +116 -0
- data/themes/CSSS/js/prefixfree.min.js +5 -0
- data/themes/CSSS/js/slideshow.js +621 -0
- data/themes/common/css/pygments/colorful.css +62 -0
- data/themes/common/css/pygments/manni.css +61 -0
- data/themes/common/css/pygments/native.css +70 -0
- data/themes/common/css/pygments/solarized.css +66 -0
- data/themes/common/fonts/DroidSansMono.svg +626 -0
- data/themes/common/fonts/DroidSansMono.ttf +0 -0
- data/themes/common/fonts/Lato-BoldItalic.woff +0 -0
- data/themes/common/fonts/Lato-Italic.woff +0 -0
- data/themes/common/fonts/Lato-bold.woff +0 -0
- data/themes/common/fonts/Lato.woff +0 -0
- data/themes/common/fonts/OpenSans-Bold.woff +0 -0
- data/themes/common/fonts/OpenSans-BoldItalic.woff +0 -0
- data/themes/common/fonts/OpenSans-Italic.woff +0 -0
- data/themes/common/fonts/OpenSans.woff +0 -0
- data/themes/common/fonts/PTMono.woff +0 -0
- data/themes/common/fonts/PTSans.Bold.Italic.woff +0 -0
- data/themes/common/fonts/PTSans.Bold.woff +0 -0
- data/themes/common/fonts/PTSans.Italic.woff +0 -0
- data/themes/common/fonts/PTSans.Narrow.Bold.woff +0 -0
- data/themes/common/fonts/PTSans.Narrow.woff +0 -0
- data/themes/common/fonts/PTSans.woff +0 -0
- data/themes/common/fonts/TargetBlank.otf +0 -0
- data/themes/common/fonts/TargetBlank.svg +14 -0
- data/themes/common/fonts/YanoneKaffeesatz-Bold.woff +0 -0
- data/themes/common/fonts/YanoneKaffeesatz-Regular.woff +0 -0
- data/themes/common/fonts/crimson_text.ttf +0 -0
- data/themes/common/fonts/crimson_text_bold.ttf +0 -0
- data/themes/common/fonts/crimson_text_semibold.ttf +0 -0
- data/themes/common/fonts/league_gothic-webfont.ttf +0 -0
- data/themes/html5rocks/README +2 -0
- data/themes/html5rocks/css/default.css +501 -0
- data/themes/html5rocks/css/moon.css +543 -0
- data/themes/html5rocks/css/sand.css +508 -0
- data/themes/html5rocks/css/sea_wave.css +492 -0
- data/themes/html5rocks/index.erb +64 -0
- data/themes/html5rocks/js/slides.js +464 -0
- data/themes/io2012/README +2 -0
- data/themes/io2012/css/default.css +1481 -0
- data/themes/io2012/css/fonts.css +24 -0
- data/themes/io2012/css/phone.css +27 -0
- data/themes/io2012/images/google_developers_icon_128.png +0 -0
- data/themes/io2012/images/io2012_logo.png +0 -0
- data/themes/io2012/index.erb +73 -0
- data/themes/io2012/js/hammer.js +586 -0
- data/themes/io2012/js/modernizr.custom.45394.js +4 -0
- data/themes/io2012/js/order.js +8 -0
- data/themes/io2012/js/polyfills/classList.min.js +2 -0
- data/themes/io2012/js/polyfills/dataset.min.js +2 -0
- data/themes/io2012/js/polyfills/history.min.js +1 -0
- data/themes/io2012/js/prettify/lang-apollo.js +2 -0
- data/themes/io2012/js/prettify/lang-clj.js +18 -0
- data/themes/io2012/js/prettify/lang-css.js +2 -0
- data/themes/io2012/js/prettify/lang-go.js +1 -0
- data/themes/io2012/js/prettify/lang-hs.js +2 -0
- data/themes/io2012/js/prettify/lang-lisp.js +3 -0
- data/themes/io2012/js/prettify/lang-lua.js +2 -0
- data/themes/io2012/js/prettify/lang-ml.js +2 -0
- data/themes/io2012/js/prettify/lang-n.js +4 -0
- data/themes/io2012/js/prettify/lang-proto.js +1 -0
- data/themes/io2012/js/prettify/lang-scala.js +2 -0
- data/themes/io2012/js/prettify/lang-sql.js +2 -0
- data/themes/io2012/js/prettify/lang-tex.js +1 -0
- data/themes/io2012/js/prettify/lang-vb.js +2 -0
- data/themes/io2012/js/prettify/lang-vhdl.js +3 -0
- data/themes/io2012/js/prettify/lang-wiki.js +2 -0
- data/themes/io2012/js/prettify/lang-xq.js +3 -0
- data/themes/io2012/js/prettify/lang-yaml.js +2 -0
- data/themes/io2012/js/prettify/prettify.css +1 -0
- data/themes/io2012/js/prettify/prettify.js +28 -0
- data/themes/io2012/js/require-1.0.8.min.js +33 -0
- data/themes/io2012/js/slide-controller.js +109 -0
- data/themes/io2012/js/slide-deck.js +768 -0
- data/themes/io2012/js/slides.js +5 -0
- data/themes/memories/README +5 -0
- data/themes/memories/css/fonts.css +25 -0
- data/themes/memories/css/slideshow.css +286 -0
- data/themes/memories/css/theme.css +183 -0
- data/themes/memories/index.erb +37 -0
- data/themes/memories/js/prefixfree.min.js +13 -0
- data/themes/memories/js/slideshow.js +577 -0
- data/themes/modern/LICENSE +20 -0
- data/themes/modern/README.md +52 -0
- data/themes/modern/css/GENERATED_CONTENT +0 -0
- data/themes/modern/css/defaults.css +0 -0
- data/themes/modern/css/fonts.css +166 -0
- data/themes/modern/css/pygments/colorful.css +215 -0
- data/themes/modern/css/pygments/github.css +208 -0
- data/themes/modern/css/pygments/solarized-dark.css +213 -0
- data/themes/modern/css/pygments/solarized-light.css +213 -0
- data/themes/modern/css/reset.css +41 -0
- data/themes/modern/css/screen.css +1183 -0
- data/themes/modern/fonts/Collegiate.woff +0 -0
- data/themes/modern/fonts/GoudyBookletter.1911.woff +0 -0
- data/themes/modern/fonts/Inconsolata.Bold.woff +0 -0
- data/themes/modern/fonts/Inconsolata.woff +0 -0
- data/themes/modern/fonts/Junction.woff +0 -0
- data/themes/modern/fonts/LiberationMono.Bold.woff +0 -0
- data/themes/modern/fonts/LiberationMono.BoldItalic.woff +0 -0
- data/themes/modern/fonts/LiberationMono.Italic.woff +0 -0
- data/themes/modern/fonts/LiberationMono.Regular.woff +0 -0
- data/themes/modern/fonts/OpenSans.Bold.woff +0 -0
- data/themes/modern/fonts/OpenSans.BoldItalic.woff +0 -0
- data/themes/modern/fonts/OpenSans.ExtraBold.woff +0 -0
- data/themes/modern/fonts/OpenSans.ExtraBoldItalic.woff +0 -0
- data/themes/modern/fonts/OpenSans.Italic.woff +0 -0
- data/themes/modern/fonts/OpenSans.Light.woff +0 -0
- data/themes/modern/fonts/OpenSans.LightItalic.woff +0 -0
- data/themes/modern/fonts/OpenSans.Regular.woff +0 -0
- data/themes/modern/fonts/OpenSans.Semibold.woff +0 -0
- data/themes/modern/fonts/OpenSans.SemiboldItalic.woff +0 -0
- data/themes/modern/fonts/PTMono.woff +0 -0
- data/themes/modern/fonts/PTSans.Bold.Italic.woff +0 -0
- data/themes/modern/fonts/PTSans.Bold.woff +0 -0
- data/themes/modern/fonts/PTSans.Italic.woff +0 -0
- data/themes/modern/fonts/PTSans.Narrow.Bold.woff +0 -0
- data/themes/modern/fonts/PTSans.woff +0 -0
- data/themes/modern/fonts/Raleway.Thin.woff +0 -0
- data/themes/modern/fonts/STIXGeneral.Bold.woff +0 -0
- data/themes/modern/fonts/STIXGeneral.BoldItalic.woff +0 -0
- data/themes/modern/fonts/STIXGeneral.Italic.woff +0 -0
- data/themes/modern/fonts/STIXGeneral.Regular.woff +0 -0
- data/themes/modern/fonts/YanoneKaffeesatz.Bold.woff +0 -0
- data/themes/modern/fonts/YanoneKaffeesatz.ExtraLight.woff +0 -0
- data/themes/modern/fonts/YanoneKaffeesatz.Light.woff +0 -0
- data/themes/modern/fonts/YanoneKaffeesatz.Regular.woff +0 -0
- data/themes/modern/images/cc/by.svg +29 -0
- data/themes/modern/images/cc/cc-white.svg +23 -0
- data/themes/modern/images/cc/cc.svg +23 -0
- data/themes/modern/images/cc/nc-eu.svg +21 -0
- data/themes/modern/images/cc/nc-jp.svg +18 -0
- data/themes/modern/images/cc/nc.svg +23 -0
- data/themes/modern/images/cc/nd.svg +20 -0
- data/themes/modern/images/cc/pd.svg +24 -0
- data/themes/modern/images/cc/remix.svg +20 -0
- data/themes/modern/images/cc/sa.svg +22 -0
- data/themes/modern/images/cc/sampling.plus.svg +33 -0
- data/themes/modern/images/cc/sampling.svg +36 -0
- data/themes/modern/images/cc/share.svg +22 -0
- data/themes/modern/images/cc/zero.svg +24 -0
- data/themes/modern/images/flickr.svg +65 -0
- data/themes/modern/images/mesh.png +0 -0
- data/themes/modern/images/mesh@2x.png +0 -0
- data/themes/modern/images/progress-grayDark.svg +55 -0
- data/themes/modern/images/progress.svg +3 -0
- data/themes/modern/index.erb +76 -0
- data/themes/modern/js/highcharts.js +294 -0
- data/themes/modern/js/jquery-2.1.0.min.js +4 -0
- data/themes/modern/js/script.coffee +480 -0
- data/themes/modern/js/script.js +678 -0
- data/themes/modern/styles/_box.scss +89 -0
- data/themes/modern/styles/_figure.scss +81 -0
- data/themes/modern/styles/_full.scss +74 -0
- data/themes/modern/styles/_increment.scss +38 -0
- data/themes/modern/styles/_list.scss +129 -0
- data/themes/modern/styles/_progress.scss +19 -0
- data/themes/modern/styles/defaults.scss +46 -0
- data/themes/modern/styles/fonts.scss +197 -0
- data/themes/modern/styles/pygments/_solarized.scss +82 -0
- data/themes/modern/styles/pygments/colorful.scss +67 -0
- data/themes/modern/styles/pygments/github.scss +67 -0
- data/themes/modern/styles/pygments/solarized-dark.scss +15 -0
- data/themes/modern/styles/pygments/solarized-light.scss +15 -0
- data/themes/modern/styles/reset.scss +46 -0
- data/themes/modern/styles/screen.scss +841 -0
- data/themes/reveal/README +2 -0
- data/themes/reveal/css/main.css +1029 -0
- data/themes/reveal/css/reset.css +57 -0
- data/themes/reveal/index.erb +102 -0
- data/themes/reveal/js/classList.js +2 -0
- data/themes/reveal/js/head.min.js +8 -0
- data/themes/reveal/js/reveal.js +951 -0
- data/themes/shower/README +2 -0
- data/themes/shower/css/fonts.css +50 -0
- data/themes/shower/css/reset.css +42 -0
- data/themes/shower/css/style.css +418 -0
- data/themes/shower/images/grid.png +0 -0
- data/themes/shower/images/linen.png +0 -0
- data/themes/shower/images/ribbon.svg +4 -0
- data/themes/shower/index.erb +35 -0
- data/themes/shower/js/script.js +325 -0
- data/themes/template/README +5 -0
- data/themes/template/css/reset.css +42 -0
- data/themes/template/index.erb +35 -0
- data/themes/template/js/prefixfree.min.js +13 -0
- metadata +343 -0
@@ -0,0 +1,61 @@
|
|
1
|
+
.hll { background-color: #ffffcc }
|
2
|
+
.c { color: #0099FF; font-style: italic } /* Comment */
|
3
|
+
.err { color: #AA0000; background-color: #FFAAAA } /* Error */
|
4
|
+
.k { color: #006699; font-weight: bold } /* Keyword */
|
5
|
+
.o { color: #555555 } /* Operator */
|
6
|
+
.cm { color: #0099FF; font-style: italic } /* Comment.Multiline */
|
7
|
+
.cp { color: #009999 } /* Comment.Preproc */
|
8
|
+
.c1 { color: #0099FF; font-style: italic } /* Comment.Single */
|
9
|
+
.cs { color: #0099FF; font-weight: bold; font-style: italic } /* Comment.Special */
|
10
|
+
.gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */
|
11
|
+
.ge { font-style: italic } /* Generic.Emph */
|
12
|
+
.gr { color: #FF0000 } /* Generic.Error */
|
13
|
+
.gh { color: #003300; font-weight: bold } /* Generic.Heading */
|
14
|
+
.gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */
|
15
|
+
.go { color: #333333 } /* Generic.Output */
|
16
|
+
.gp { color: #000099; font-weight: bold } /* Generic.Prompt */
|
17
|
+
.gs { font-weight: bold } /* Generic.Strong */
|
18
|
+
.gu { color: #003300; font-weight: bold } /* Generic.Subheading */
|
19
|
+
.gt { color: #99CC66 } /* Generic.Traceback */
|
20
|
+
.kc { color: #006699; font-weight: bold } /* Keyword.Constant */
|
21
|
+
.kd { color: #006699; font-weight: bold } /* Keyword.Declaration */
|
22
|
+
.kn { color: #006699; font-weight: bold } /* Keyword.Namespace */
|
23
|
+
.kp { color: #006699 } /* Keyword.Pseudo */
|
24
|
+
.kr { color: #006699; font-weight: bold } /* Keyword.Reserved */
|
25
|
+
.kt { color: #007788; font-weight: bold } /* Keyword.Type */
|
26
|
+
.m { color: #FF6600 } /* Literal.Number */
|
27
|
+
.s { color: #CC3300 } /* Literal.String */
|
28
|
+
.na { color: #330099 } /* Name.Attribute */
|
29
|
+
.nb { color: #336666 } /* Name.Builtin */
|
30
|
+
.nc { color: #00AA88; font-weight: bold } /* Name.Class */
|
31
|
+
.no { color: #336600 } /* Name.Constant */
|
32
|
+
.nd { color: #9999FF } /* Name.Decorator */
|
33
|
+
.ni { color: #999999; font-weight: bold } /* Name.Entity */
|
34
|
+
.ne { color: #CC0000; font-weight: bold } /* Name.Exception */
|
35
|
+
.nf { color: #CC00FF } /* Name.Function */
|
36
|
+
.nl { color: #9999FF } /* Name.Label */
|
37
|
+
.nn { color: #00CCFF; font-weight: bold } /* Name.Namespace */
|
38
|
+
.nt { color: #330099; font-weight: bold } /* Name.Tag */
|
39
|
+
.nv { color: #003333 } /* Name.Variable */
|
40
|
+
.ow { color: #000000; font-weight: bold } /* Operator.Word */
|
41
|
+
.w { color: #bbbbbb } /* Text.Whitespace */
|
42
|
+
.mf { color: #FF6600 } /* Literal.Number.Float */
|
43
|
+
.mh { color: #FF6600 } /* Literal.Number.Hex */
|
44
|
+
.mi { color: #FF6600 } /* Literal.Number.Integer */
|
45
|
+
.mo { color: #FF6600 } /* Literal.Number.Oct */
|
46
|
+
.sb { color: #CC3300 } /* Literal.String.Backtick */
|
47
|
+
.sc { color: #CC3300 } /* Literal.String.Char */
|
48
|
+
.sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */
|
49
|
+
.s2 { color: #CC3300 } /* Literal.String.Double */
|
50
|
+
.se { color: #CC3300; font-weight: bold } /* Literal.String.Escape */
|
51
|
+
.sh { color: #CC3300 } /* Literal.String.Heredoc */
|
52
|
+
.si { color: #AA0000 } /* Literal.String.Interpol */
|
53
|
+
.sx { color: #CC3300 } /* Literal.String.Other */
|
54
|
+
.sr { color: #33AAAA } /* Literal.String.Regex */
|
55
|
+
.s1 { color: #CC3300 } /* Literal.String.Single */
|
56
|
+
.ss { color: #FFCC33 } /* Literal.String.Symbol */
|
57
|
+
.bp { color: #336666 } /* Name.Builtin.Pseudo */
|
58
|
+
.vc { color: #003333 } /* Name.Variable.Class */
|
59
|
+
.vg { color: #003333 } /* Name.Variable.Global */
|
60
|
+
.vi { color: #003333 } /* Name.Variable.Instance */
|
61
|
+
.il { color: #FF6600 } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,70 @@
|
|
1
|
+
code .hll { background-color: #404040 }
|
2
|
+
code { background: #202020; color: #d0d0d0 }
|
3
|
+
code .c { color: #999999; font-style: italic } /* Comment */
|
4
|
+
code .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
5
|
+
code .g { color: #d0d0d0 } /* Generic */
|
6
|
+
code .k { color: #6ab825; font-weight: bold } /* Keyword */
|
7
|
+
code .l { color: #d0d0d0 } /* Literal */
|
8
|
+
code .n { color: #d0d0d0 } /* Name */
|
9
|
+
code .o { color: #d0d0d0 } /* Operator */
|
10
|
+
code .x { color: #d0d0d0 } /* Other */
|
11
|
+
code .p { color: #d0d0d0 } /* Punctuation */
|
12
|
+
code .cm { color: #999999; font-style: italic } /* Comment.Multiline */
|
13
|
+
code .cp { color: #cd2828; font-weight: bold } /* Comment.Preproc */
|
14
|
+
code .c1 { color: #999999; font-style: italic } /* Comment.Single */
|
15
|
+
code .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */
|
16
|
+
code .gd { color: #d22323 } /* Generic.Deleted */
|
17
|
+
code .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */
|
18
|
+
code .gr { color: #d22323 } /* Generic.Error */
|
19
|
+
code .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
|
20
|
+
code .gi { color: #589819 } /* Generic.Inserted */
|
21
|
+
code .go { color: #cccccc } /* Generic.Output */
|
22
|
+
code .gp { color: #aaaaaa } /* Generic.Prompt */
|
23
|
+
code .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */
|
24
|
+
code .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */
|
25
|
+
code .gt { color: #d22323 } /* Generic.Traceback */
|
26
|
+
code .kc { color: #6ab825; font-weight: bold } /* Keyword.Constant */
|
27
|
+
code .kd { color: #6ab825; font-weight: bold } /* Keyword.Declaration */
|
28
|
+
code .kn { color: #6ab825; font-weight: bold } /* Keyword.Namespace */
|
29
|
+
code .kp { color: #6ab825 } /* Keyword.Pseudo */
|
30
|
+
code .kr { color: #6ab825; font-weight: bold } /* Keyword.Reserved */
|
31
|
+
code .kt { color: #6ab825; font-weight: bold } /* Keyword.Type */
|
32
|
+
code .ld { color: #d0d0d0 } /* Literal.Date */
|
33
|
+
code .m { color: #3677a9 } /* Literal.Number */
|
34
|
+
code .s { color: #ed9d13 } /* Literal.String */
|
35
|
+
code .na { color: #bbbbbb } /* Name.Attribute */
|
36
|
+
code .nb { color: #24909d } /* Name.Builtin */
|
37
|
+
code .nc { color: #447fcf; text-decoration: underline } /* Name.Class */
|
38
|
+
code .no { color: #40ffff } /* Name.Constant */
|
39
|
+
code .nd { color: #ffa500 } /* Name.Decorator */
|
40
|
+
code .ni { color: #d0d0d0 } /* Name.Entity */
|
41
|
+
code .ne { color: #bbbbbb } /* Name.Exception */
|
42
|
+
code .nf { color: #447fcf } /* Name.Function */
|
43
|
+
code .nl { color: #d0d0d0 } /* Name.Label */
|
44
|
+
code .nn { color: #447fcf; text-decoration: underline } /* Name.Namespace */
|
45
|
+
code .nx { color: #d0d0d0 } /* Name.Other */
|
46
|
+
code .py { color: #d0d0d0 } /* Name.Property */
|
47
|
+
code .nt { color: #6ab825; font-weight: bold } /* Name.Tag */
|
48
|
+
code .nv { color: #40ffff } /* Name.Variable */
|
49
|
+
code .ow { color: #6ab825; font-weight: bold } /* Operator.Word */
|
50
|
+
code .w { color: #666666 } /* Text.Whitespace */
|
51
|
+
code .mf { color: #3677a9 } /* Literal.Number.Float */
|
52
|
+
code .mh { color: #3677a9 } /* Literal.Number.Hex */
|
53
|
+
code .mi { color: #3677a9 } /* Literal.Number.Integer */
|
54
|
+
code .mo { color: #3677a9 } /* Literal.Number.Oct */
|
55
|
+
code .sb { color: #ed9d13 } /* Literal.String.Backtick */
|
56
|
+
code .sc { color: #ed9d13 } /* Literal.String.Char */
|
57
|
+
code .sd { color: #ed9d13 } /* Literal.String.Doc */
|
58
|
+
code .s2 { color: #ed9d13 } /* Literal.String.Double */
|
59
|
+
code .se { color: #ed9d13 } /* Literal.String.Escape */
|
60
|
+
code .sh { color: #ed9d13 } /* Literal.String.Heredoc */
|
61
|
+
code .si { color: #ed9d13 } /* Literal.String.Interpol */
|
62
|
+
code .sx { color: #ffa500 } /* Literal.String.Other */
|
63
|
+
code .sr { color: #ed9d13 } /* Literal.String.Regex */
|
64
|
+
code .s1 { color: #ed9d13 } /* Literal.String.Single */
|
65
|
+
code .ss { color: #ed9d13 } /* Literal.String.Symbol */
|
66
|
+
code .bp { color: #24909d } /* Name.Builtin.Pseudo */
|
67
|
+
code .vc { color: #40ffff } /* Name.Variable.Class */
|
68
|
+
code .vg { color: #40ffff } /* Name.Variable.Global */
|
69
|
+
code .vi { color: #40ffff } /* Name.Variable.Instance */
|
70
|
+
code .il { color: #3677a9 } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,66 @@
|
|
1
|
+
code .hll { background-color: #ffffcc }
|
2
|
+
code { background: #eee8d5; color: #586e75 }
|
3
|
+
code .c { color: #93a1a1; font-style: italic } /* Comment */
|
4
|
+
code .g { color: #d33682 } /* Generic */
|
5
|
+
code .k { color: #859900 } /* Keyword */
|
6
|
+
code .l { color: #2aa198 } /* Literal */
|
7
|
+
code .n { color: #268bd2 } /* Name */
|
8
|
+
code .cm { color: #93a1a1; font-style: italic } /* Comment.Multiline */
|
9
|
+
code .cp { color: #93a1a1; font-style: italic } /* Comment.Preproc */
|
10
|
+
code .c1 { color: #93a1a1; font-style: italic } /* Comment.Single */
|
11
|
+
code .cs { color: #93a1a1; font-style: italic } /* Comment.Special */
|
12
|
+
code .gd { color: #d33682 } /* Generic.Deleted */
|
13
|
+
code .ge { color: #d33682 } /* Generic.Emph */
|
14
|
+
code .gr { color: #d33682 } /* Generic.Error */
|
15
|
+
code .gh { color: #d33682 } /* Generic.Heading */
|
16
|
+
code .gi { color: #d33682 } /* Generic.Inserted */
|
17
|
+
code .go { color: #d33682 } /* Generic.Output */
|
18
|
+
code .gp { color: #d33682 } /* Generic.Prompt */
|
19
|
+
code .gs { color: #d33682 } /* Generic.Strong */
|
20
|
+
code .gu { color: #d33682 } /* Generic.Subheading */
|
21
|
+
code .gt { color: #d33682 } /* Generic.Traceback */
|
22
|
+
code .kc { color: #859900; font-weight: bold } /* Keyword.Constant */
|
23
|
+
code .kd { color: #859900 } /* Keyword.Declaration */
|
24
|
+
code .kn { color: #dc322f; font-weight: bold } /* Keyword.Namespace */
|
25
|
+
code .kp { color: #859900 } /* Keyword.Pseudo */
|
26
|
+
code .kr { color: #859900 } /* Keyword.Reserved */
|
27
|
+
code .kt { color: #859900; font-weight: bold } /* Keyword.Type */
|
28
|
+
code .ld { color: #2aa198 } /* Literal.Date */
|
29
|
+
code .m { color: #2aa198; font-weight: bold } /* Literal.Number */
|
30
|
+
code .s { color: #2aa198 } /* Literal.String */
|
31
|
+
code .na { color: #268bd2 } /* Name.Attribute */
|
32
|
+
code .nb { color: #cb4b16 } /* Name.Builtin */
|
33
|
+
code .nc { color: #cb4b16 } /* Name.Class */
|
34
|
+
code .no { color: #268bd2 } /* Name.Constant */
|
35
|
+
code .nd { color: #268bd2 } /* Name.Decorator */
|
36
|
+
code .ni { color: #268bd2 } /* Name.Entity */
|
37
|
+
code .ne { color: #268bd2 } /* Name.Exception */
|
38
|
+
code .nf { color: #268bd2 } /* Name.Function */
|
39
|
+
code .nl { color: #268bd2 } /* Name.Label */
|
40
|
+
code .nn { color: #268bd2 } /* Name.Namespace */
|
41
|
+
code .nx { color: #268bd2 } /* Name.Other */
|
42
|
+
code .py { color: #268bd2 } /* Name.Property */
|
43
|
+
code .nt { color: #268bd2; font-weight: bold } /* Name.Tag */
|
44
|
+
code .nv { color: #268bd2 } /* Name.Variable */
|
45
|
+
code .ow { color: #859900 } /* Operator.Word */
|
46
|
+
code .w { color: #586e75 } /* Text.Whitespace */
|
47
|
+
code .mf { color: #2aa198; font-weight: bold } /* Literal.Number.Float */
|
48
|
+
code .mh { color: #2aa198; font-weight: bold } /* Literal.Number.Hex */
|
49
|
+
code .mi { color: #2aa198; font-weight: bold } /* Literal.Number.Integer */
|
50
|
+
code .mo { color: #2aa198; font-weight: bold } /* Literal.Number.Oct */
|
51
|
+
code .sb { color: #2aa198 } /* Literal.String.Backtick */
|
52
|
+
code .sc { color: #2aa198 } /* Literal.String.Char */
|
53
|
+
code .sd { color: #2aa198 } /* Literal.String.Doc */
|
54
|
+
code .s2 { color: #2aa198 } /* Literal.String.Double */
|
55
|
+
code .se { color: #2aa198 } /* Literal.String.Escape */
|
56
|
+
code .sh { color: #2aa198 } /* Literal.String.Heredoc */
|
57
|
+
code .si { color: #2aa198 } /* Literal.String.Interpol */
|
58
|
+
code .sx { color: #2aa198 } /* Literal.String.Other */
|
59
|
+
code .sr { color: #2aa198 } /* Literal.String.Regex */
|
60
|
+
code .s1 { color: #2aa198 } /* Literal.String.Single */
|
61
|
+
code .ss { color: #2aa198 } /* Literal.String.Symbol */
|
62
|
+
code .bp { color: #cb4b16 } /* Name.Builtin.Pseudo */
|
63
|
+
code .vc { color: #268bd2 } /* Name.Variable.Class */
|
64
|
+
code .vg { color: #268bd2 } /* Name.Variable.Global */
|
65
|
+
code .vi { color: #268bd2 } /* Name.Variable.Instance */
|
66
|
+
code .il { color: #2aa198; font-weight: bold } /* Literal.Number.Integer.Long */
|