jekyll-any-theme 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (174) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +52 -0
  4. data/_includes/api/example.html +23 -0
  5. data/_includes/api/get.html +11 -0
  6. data/_includes/api/save.html +1 -0
  7. data/_includes/components/alert.html +7 -0
  8. data/_includes/components/blockquote.html +23 -0
  9. data/_includes/components/bootstrap.html +245 -0
  10. data/_includes/components/card.html +85 -0
  11. data/_includes/components/lead.html +1 -0
  12. data/_includes/components/login.html +28 -0
  13. data/_includes/components/navbar_link.html +3 -0
  14. data/_includes/components/navbar_text.html +3 -0
  15. data/_includes/components/page_info.html +48 -0
  16. data/_includes/components/toc.html +18 -0
  17. data/_includes/filters/link_to_file.html +26 -0
  18. data/_includes/filters/unslug.html +17 -0
  19. data/_includes/page/end.html +2 -0
  20. data/_includes/page/footer.html +26 -0
  21. data/_includes/page/head.html +28 -0
  22. data/_includes/page/header.html +7 -0
  23. data/_includes/page/init.html +17 -0
  24. data/_includes/page/main.html +44 -0
  25. data/_includes/page/navbar.html +69 -0
  26. data/_includes/page/sidebar.html +6 -0
  27. data/_includes/page/top.html +27 -0
  28. data/_includes/tempus/calendar.html +26 -0
  29. data/_includes/tempus/events.html +72 -0
  30. data/_includes/tempus/next.html +73 -0
  31. data/_includes/widgets/libros.html +183 -0
  32. data/_includes/widgets/themes.html +11 -0
  33. data/_includes/widgets/toc.html +18 -0
  34. data/_layouts/default.html +8 -0
  35. data/_layouts/page.html +5 -0
  36. data/_layouts/post.html +5 -0
  37. data/_sass/_any_theme.sass +54 -0
  38. data/_sass/any_theme/_corrections.sass +71 -0
  39. data/_sass/any_theme/_headings.sass +13 -0
  40. data/_sass/any_theme/_mixins.sass +11 -0
  41. data/_sass/any_theme/_syntax_blood.scss +310 -0
  42. data/_sass/any_theme/_syntax_dark.scss +63 -0
  43. data/_sass/any_theme/_syntax_default.scss +310 -0
  44. data/_sass/any_theme/_toc.sass +4 -0
  45. data/_sass/any_theme/_widgets.sass +48 -0
  46. data/_sass/bootstrap/_alert.scss +51 -0
  47. data/_sass/bootstrap/_badge.scss +47 -0
  48. data/_sass/bootstrap/_breadcrumb.scss +38 -0
  49. data/_sass/bootstrap/_button-group.scss +166 -0
  50. data/_sass/bootstrap/_buttons.scss +143 -0
  51. data/_sass/bootstrap/_card.scss +270 -0
  52. data/_sass/bootstrap/_carousel.scss +191 -0
  53. data/_sass/bootstrap/_close.scss +34 -0
  54. data/_sass/bootstrap/_code.scss +56 -0
  55. data/_sass/bootstrap/_custom-forms.scss +297 -0
  56. data/_sass/bootstrap/_dropdown.scss +131 -0
  57. data/_sass/bootstrap/_forms.scss +333 -0
  58. data/_sass/bootstrap/_functions.scss +86 -0
  59. data/_sass/bootstrap/_grid.scss +52 -0
  60. data/_sass/bootstrap/_images.scss +42 -0
  61. data/_sass/bootstrap/_input-group.scss +159 -0
  62. data/_sass/bootstrap/_jumbotron.scss +16 -0
  63. data/_sass/bootstrap/_list-group.scss +115 -0
  64. data/_sass/bootstrap/_media.scss +8 -0
  65. data/_sass/bootstrap/_mixins.scss +42 -0
  66. data/_sass/bootstrap/_modal.scss +168 -0
  67. data/_sass/bootstrap/_nav.scss +118 -0
  68. data/_sass/bootstrap/_navbar.scss +311 -0
  69. data/_sass/bootstrap/_pagination.scss +77 -0
  70. data/_sass/bootstrap/_popover.scss +183 -0
  71. data/_sass/bootstrap/_print.scss +124 -0
  72. data/_sass/bootstrap/_progress.scss +33 -0
  73. data/_sass/bootstrap/_reboot.scss +482 -0
  74. data/_sass/bootstrap/_root.scss +19 -0
  75. data/_sass/bootstrap/_tables.scss +180 -0
  76. data/_sass/bootstrap/_tooltip.scss +115 -0
  77. data/_sass/bootstrap/_transitions.scss +36 -0
  78. data/_sass/bootstrap/_type.scss +125 -0
  79. data/_sass/bootstrap/_utilities.scss +14 -0
  80. data/_sass/bootstrap/_variables.scss +894 -0
  81. data/_sass/bootstrap/bootstrap-grid.scss +32 -0
  82. data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
  83. data/_sass/bootstrap/bootstrap.scss +42 -0
  84. data/_sass/bootstrap/mixins/_alert.scss +13 -0
  85. data/_sass/bootstrap/mixins/_background-variant.scss +21 -0
  86. data/_sass/bootstrap/mixins/_badge.scss +12 -0
  87. data/_sass/bootstrap/mixins/_border-radius.scss +35 -0
  88. data/_sass/bootstrap/mixins/_box-shadow.scss +5 -0
  89. data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
  90. data/_sass/bootstrap/mixins/_buttons.scss +109 -0
  91. data/_sass/bootstrap/mixins/_caret.scss +65 -0
  92. data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
  93. data/_sass/bootstrap/mixins/_float.scss +11 -0
  94. data/_sass/bootstrap/mixins/_forms.scss +137 -0
  95. data/_sass/bootstrap/mixins/_gradients.scss +45 -0
  96. data/_sass/bootstrap/mixins/_grid-framework.scss +67 -0
  97. data/_sass/bootstrap/mixins/_grid.scss +52 -0
  98. data/_sass/bootstrap/mixins/_hover.scss +39 -0
  99. data/_sass/bootstrap/mixins/_image.scss +36 -0
  100. data/_sass/bootstrap/mixins/_list-group.scss +21 -0
  101. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  102. data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
  103. data/_sass/bootstrap/mixins/_navbar-align.scss +10 -0
  104. data/_sass/bootstrap/mixins/_pagination.scss +22 -0
  105. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  106. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  107. data/_sass/bootstrap/mixins/_screen-reader.scss +35 -0
  108. data/_sass/bootstrap/mixins/_size.scss +6 -0
  109. data/_sass/bootstrap/mixins/_table-row.scss +30 -0
  110. data/_sass/bootstrap/mixins/_text-emphasis.scss +14 -0
  111. data/_sass/bootstrap/mixins/_text-hide.scss +9 -0
  112. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  113. data/_sass/bootstrap/mixins/_transition.scss +9 -0
  114. data/_sass/bootstrap/mixins/_visibility.scss +7 -0
  115. data/_sass/bootstrap/utilities/_align.scss +8 -0
  116. data/_sass/bootstrap/utilities/_background.scss +19 -0
  117. data/_sass/bootstrap/utilities/_borders.scss +59 -0
  118. data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
  119. data/_sass/bootstrap/utilities/_display.scss +38 -0
  120. data/_sass/bootstrap/utilities/_embed.scss +52 -0
  121. data/_sass/bootstrap/utilities/_flex.scss +46 -0
  122. data/_sass/bootstrap/utilities/_float.scss +9 -0
  123. data/_sass/bootstrap/utilities/_position.scss +36 -0
  124. data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
  125. data/_sass/bootstrap/utilities/_sizing.scss +12 -0
  126. data/_sass/bootstrap/utilities/_spacing.scss +51 -0
  127. data/_sass/bootstrap/utilities/_text.scss +52 -0
  128. data/_sass/bootstrap/utilities/_visibility.scss +11 -0
  129. data/assets/css/basic_light_sans.sass +71 -0
  130. data/assets/css_no/basic_dark_sans.sass +114 -0
  131. data/assets/css_no/basic_dark_serif.sass +114 -0
  132. data/assets/css_no/basic_light_serif.sass +69 -0
  133. data/assets/css_no/bootstrap.sass +44 -0
  134. data/assets/css_no/dark_additions.sass +74 -0
  135. data/assets/css_no/dnd.sass +188 -0
  136. data/assets/css_no/gurps.sass +70 -0
  137. data/assets/css_no/minidark.sass +177 -0
  138. data/assets/css_no/minimal.sass +139 -0
  139. data/assets/css_no/roboto_dark.sass +324 -0
  140. data/assets/css_no/roboto_light.sass +275 -0
  141. data/assets/fonts/scala/fonts.scss +59 -0
  142. data/assets/fonts/scala/scala-bold-webfont.eot +0 -0
  143. data/assets/fonts/scala/scala-bold-webfont.svg +873 -0
  144. data/assets/fonts/scala/scala-bold-webfont.ttf +0 -0
  145. data/assets/fonts/scala/scala-bold-webfont.woff +0 -0
  146. data/assets/fonts/scala/scala-italic-webfont.eot +0 -0
  147. data/assets/fonts/scala/scala-italic-webfont.svg +235 -0
  148. data/assets/fonts/scala/scala-italic-webfont.ttf +0 -0
  149. data/assets/fonts/scala/scala-italic-webfont.woff +0 -0
  150. data/assets/fonts/scala/scala-webfont.eot +0 -0
  151. data/assets/fonts/scala/scala-webfont.svg +234 -0
  152. data/assets/fonts/scala/scala-webfont.ttf +0 -0
  153. data/assets/fonts/scala/scala-webfont.woff +0 -0
  154. data/assets/fonts/scala/scalasans-bold-webfont.eot +0 -0
  155. data/assets/fonts/scala/scalasans-bold-webfont.svg +244 -0
  156. data/assets/fonts/scala/scalasans-bold-webfont.ttf +0 -0
  157. data/assets/fonts/scala/scalasans-bold-webfont.woff +0 -0
  158. data/assets/fonts/scala/scalasans-webfont.eot +0 -0
  159. data/assets/fonts/scala/scalasans-webfont.svg +238 -0
  160. data/assets/fonts/scala/scalasans-webfont.ttf +0 -0
  161. data/assets/fonts/scala/scalasans-webfont.woff +0 -0
  162. data/assets/images/dnd-bg.jpg +0 -0
  163. data/assets/js/any-theme.coffee +33 -0
  164. data/assets/js/any_theme/libros.coffee +113 -0
  165. data/assets/js/any_theme/login.coffee +90 -0
  166. data/assets/js/any_theme/storage.coffee +49 -0
  167. data/assets/js/any_theme/themes.coffee +10 -0
  168. data/assets/pages/about.md +17 -0
  169. data/assets/pages/customize/css.md +22 -0
  170. data/assets/pages/customize/themes.md +17 -0
  171. data/assets/pages/docs/libros.md +17 -0
  172. data/assets/pages/docs/tempus.md +66 -0
  173. data/assets/pages/index.md +21 -0
  174. metadata +258 -0
@@ -0,0 +1,54 @@
1
+ /*!
2
+ * Bootstrap v4.0.0-beta.3 (https://getbootstrap.com)
3
+ * Copyright 2011-2017 The Bootstrap Authors
4
+ * Copyright 2011-2017 Twitter, Inc.
5
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
6
+ */
7
+
8
+ @import "bootstrap/functions"
9
+ @import "bootstrap/variables"
10
+ @import "bootstrap/mixins"
11
+ // @import "bootstrap/root"
12
+ @import "bootstrap/reboot"
13
+ @import "bootstrap/type"
14
+ @import "bootstrap/images"
15
+ @import "bootstrap/code"
16
+ @import "bootstrap/grid"
17
+ @import "bootstrap/tables"
18
+ @import "bootstrap/forms"
19
+ @import "bootstrap/buttons"
20
+ @import "bootstrap/transitions"
21
+ @import "bootstrap/dropdown"
22
+ @import "bootstrap/button-group"
23
+ @import "bootstrap/input-group"
24
+ @import "bootstrap/custom-forms"
25
+ @import "bootstrap/nav"
26
+ @import "bootstrap/navbar"
27
+ @import "bootstrap/card"
28
+ @import "bootstrap/breadcrumb"
29
+ @import "bootstrap/pagination"
30
+ @import "bootstrap/badge"
31
+ @import "bootstrap/jumbotron"
32
+ @import "bootstrap/alert"
33
+ @import "bootstrap/progress"
34
+ @import "bootstrap/media"
35
+ @import "bootstrap/list-group"
36
+ @import "bootstrap/close"
37
+ @import "bootstrap/modal"
38
+ @import "bootstrap/tooltip"
39
+ @import "bootstrap/popover"
40
+ @import "bootstrap/carousel"
41
+ @import "bootstrap/utilities"
42
+ @import "bootstrap/print"
43
+
44
+ // ANY THEME IMPORTS
45
+ // maybe only
46
+ // - mixins
47
+ // - bootstrap corrections
48
+ // - hard code
49
+ // - syntax
50
+
51
+ @import "any_theme/mixins"
52
+ @import "any_theme/corrections"
53
+ @import "any_theme/headings"
54
+ @import "any_theme/widgets"
@@ -0,0 +1,71 @@
1
+ // TABLES
2
+ // Set right table class
3
+ table
4
+ @extend .table
5
+
6
+ // NAVBAR
7
+ // Set default to `.navbar-light`
8
+ .navbar-nav .nav-link.active
9
+ color: $navbar-light-active-color
10
+ .navbar-toggler
11
+ color: $navbar-light-color
12
+ border-color: $navbar-light-toggler-border-color
13
+ .navbar-toggler-icon
14
+ background-image: $navbar-light-toggler-icon-bg
15
+
16
+ // DROPDOWNS
17
+ // move caret closer
18
+ .dropdown-toggle::after
19
+ margin-left: $caret-width * .3
20
+ vertical-align: $caret-width * .3
21
+
22
+ // FORMS
23
+ form
24
+ // Set mouse pointer on checkbox and radio label
25
+ .custom-checkbox,
26
+ .custom-radio
27
+ label.custom-control-label
28
+ cursor: pointer
29
+
30
+ // CARDS
31
+ .card
32
+ // Remove top margin for top titles
33
+ .card-title:first-of-type
34
+ @extend .mt-0
35
+ // Remove bottom margin for bottom elements
36
+ .card-body
37
+ @include no-last-bottom()
38
+ // Force lists in .list-groups after body
39
+ // & ~ ul
40
+ // @extend .list-group, .list-group-flush
41
+ // li
42
+ // @extend .list-group-item
43
+ .card-footer
44
+ p:last-of-type
45
+ @extend .mb-0
46
+ // Force lists in .list-groups before body
47
+ & > ul
48
+ @extend .list-group, .list-group-flush
49
+ li
50
+ @extend .list-group-item
51
+
52
+ // MODALS
53
+ .modal
54
+ @include no-last-bottom()
55
+
56
+ // ALERTS
57
+ @each $color, $value in $theme-colors
58
+ .alert-#{$color}
59
+ a
60
+ color: theme-color-level($color, 6)
61
+ .alert a
62
+ @extend .alert-link
63
+
64
+ // BLOCKQUOTE
65
+ blockquote
66
+ // Reset bottom margin
67
+ p:last-of-type
68
+ @extend .mb-0
69
+ // Set footer blockquote class
70
+ footer
71
+ @extend .blockquote-footer
@@ -0,0 +1,13 @@
1
+ // HEADINGS
2
+
3
+ // Set !default family
4
+ $font-family-headings: $font-family-base !default
5
+ @include headings()
6
+ font-family: $font-family-headings
7
+
8
+ // <header> headings
9
+ // Set !default family
10
+ $font-family-headings-header: $font-family-base !default
11
+ header
12
+ @include headings()
13
+ font-family: $font-family-headings-header
@@ -0,0 +1,11 @@
1
+ // HEADINGS
2
+ // Mixin with pre-scope and condition
3
+ @mixin headings($from: 1, $to: 6, $condition: '', $prescope: '')
4
+ @for $i from $from through $to
5
+ #{$prescope}h#{$i}#{$condition}, #{$prescope}.h#{$i}#{$condition}
6
+ @content
7
+
8
+ // Reset bottom margin of :last-og-type in cards and modals
9
+ @mixin no-last-bottom()
10
+ & > :last-child
11
+ @extend .mb-0
@@ -0,0 +1,310 @@
1
+ .highlight .hll {
2
+ background-color: mix(#ffc,$maroon,70%);
3
+ }
4
+
5
+ .highlight .c {
6
+ color: mix(#999,$maroon,70%);
7
+ }
8
+
9
+ /* Comment */
10
+ .highlight .err {
11
+ color: mix(#a00,$maroon,70%);
12
+ background-color: mix(#faa,$maroon,70%);
13
+ }
14
+
15
+ /* Error */
16
+ .highlight .k {
17
+ color: mix(#069,$maroon,70%);
18
+ }
19
+
20
+ /* Keyword */
21
+ .highlight .o {
22
+ color: mix(#555,$maroon,70%);
23
+ }
24
+
25
+ /* Operator */
26
+ .highlight .cm {
27
+ color: mix(#09f,$maroon,70%);
28
+ font-style: italic;
29
+ }
30
+
31
+ /* Comment.Multiline */
32
+ .highlight .cp {
33
+ color: mix(#099,$maroon,70%);
34
+ }
35
+
36
+ /* Comment.Preproc */
37
+ .highlight .c1 {
38
+ color: mix(#999,$maroon,70%);
39
+ }
40
+
41
+ /* Comment.Single */
42
+ .highlight .cs {
43
+ color: mix(#999,$maroon,70%);
44
+ }
45
+
46
+ /* Comment.Special */
47
+ .highlight .gd {
48
+ background-color: mix(#fcc,$maroon,70%);
49
+ border: 1px solid mix(#c00,$maroon,70%);
50
+ }
51
+
52
+ /* Generic.Deleted */
53
+ .highlight .ge {
54
+ font-style: italic;
55
+ }
56
+
57
+ /* Generic.Emph */
58
+ .highlight .gr {
59
+ color: mix(#f00,$maroon,70%);
60
+ }
61
+
62
+ /* Generic.Error */
63
+ .highlight .gh {
64
+ color: mix(#030,$maroon,70%);
65
+ }
66
+
67
+ /* Generic.Heading */
68
+ .highlight .gi {
69
+ background-color: mix(#cfc,$maroon,70%);
70
+ border: 1px solid mix(#0c0,$maroon,70%);
71
+ }
72
+
73
+ /* Generic.Inserted */
74
+ .highlight .go {
75
+ color: mix(#aaa,$maroon,70%);
76
+ }
77
+
78
+ /* Generic.Output */
79
+ .highlight .gp {
80
+ color: mix(#009,$maroon,70%);
81
+ }
82
+
83
+ /* Generic.Prompt */
84
+ /* Generic.Strong */
85
+ .highlight .gu {
86
+ color: mix(#030,$maroon,70%);
87
+ }
88
+
89
+ /* Generic.Subheading */
90
+ .highlight .gt {
91
+ color: mix(#9c6,$maroon,70%);
92
+ }
93
+
94
+ /* Generic.Traceback */
95
+ .highlight .kc {
96
+ color: mix(#069,$maroon,70%);
97
+ }
98
+
99
+ /* Keyword.Constant */
100
+ .highlight .kd {
101
+ color: mix(#069,$maroon,70%);
102
+ }
103
+
104
+ /* Keyword.Declaration */
105
+ .highlight .kn {
106
+ color: mix(#069,$maroon,70%);
107
+ }
108
+
109
+ /* Keyword.Namespace */
110
+ .highlight .kp {
111
+ color: mix(#069,$maroon,70%);
112
+ }
113
+
114
+ /* Keyword.Pseudo */
115
+ .highlight .kr {
116
+ color: mix(#069,$maroon,70%);
117
+ }
118
+
119
+ /* Keyword.Reserved */
120
+ .highlight .kt {
121
+ color: mix(#078,$maroon,70%);
122
+ }
123
+
124
+ /* Keyword.Type */
125
+ .highlight .m {
126
+ color: mix(#f60,$maroon,70%);
127
+ }
128
+
129
+ /* Literal.Number */
130
+ .highlight .s {
131
+ color: mix(#d44950,$maroon,70%);
132
+ }
133
+
134
+ /* Literal.String */
135
+ .highlight .na {
136
+ color: mix(#4f9fcf,$maroon,70%);
137
+ }
138
+
139
+ /* Name.Attribute */
140
+ .highlight .nb {
141
+ color: mix(#366,$maroon,70%);
142
+ }
143
+
144
+ /* Name.Builtin */
145
+ .highlight .nc {
146
+ color: mix(#0a8,$maroon,70%);
147
+ }
148
+
149
+ /* Name.Class */
150
+ .highlight .no {
151
+ color: mix(#360,$maroon,70%);
152
+ }
153
+
154
+ /* Name.Constant */
155
+ .highlight .nd {
156
+ color: mix(#99f,$maroon,70%);
157
+ }
158
+
159
+ /* Name.Decorator */
160
+ .highlight .ni {
161
+ color: mix(#999,$maroon,70%);
162
+ }
163
+
164
+ /* Name.Entity */
165
+ .highlight .ne {
166
+ color: mix(#c00,$maroon,70%);
167
+ }
168
+
169
+ /* Name.Exception */
170
+ .highlight .nf {
171
+ color: mix(#c0f,$maroon,70%);
172
+ }
173
+
174
+ /* Name.Function */
175
+ .highlight .nl {
176
+ color: mix(#99f,$maroon,70%);
177
+ }
178
+
179
+ /* Name.Label */
180
+ .highlight .nn {
181
+ color: mix(#0cf,$maroon,70%);
182
+ }
183
+
184
+ /* Name.Namespace */
185
+ .highlight .nt {
186
+ color: mix(#2f6f9f,$maroon,70%);
187
+ }
188
+
189
+ /* Name.Tag */
190
+ .highlight .nv {
191
+ color: mix(#033,$maroon,70%);
192
+ }
193
+
194
+ /* Name.Variable */
195
+ .highlight .ow {
196
+ color: mix(#000,$maroon,70%);
197
+ }
198
+
199
+ /* Operator.Word */
200
+ .highlight .w {
201
+ color: mix(#bbb,$maroon,70%);
202
+ }
203
+
204
+ /* Text.Whitespace */
205
+ .highlight .mf {
206
+ color: mix(#f60,$maroon,70%);
207
+ }
208
+
209
+ /* Literal.Number.Float */
210
+ .highlight .mh {
211
+ color: mix(#f60,$maroon,70%);
212
+ }
213
+
214
+ /* Literal.Number.Hex */
215
+ .highlight .mi {
216
+ color: mix(#f60,$maroon,70%);
217
+ }
218
+
219
+ /* Literal.Number.Integer */
220
+ .highlight .mo {
221
+ color: mix(#f60,$maroon,70%);
222
+ }
223
+
224
+ /* Literal.Number.Oct */
225
+ .highlight .sb {
226
+ color: mix(#c30,$maroon,70%);
227
+ }
228
+
229
+ /* Literal.String.Backtick */
230
+ .highlight .sc {
231
+ color: mix(#c30,$maroon,70%);
232
+ }
233
+
234
+ /* Literal.String.Char */
235
+ .highlight .sd {
236
+ color: mix(#c30,$maroon,70%);
237
+ font-style: italic;
238
+ }
239
+
240
+ /* Literal.String.Doc */
241
+ .highlight .s2 {
242
+ color: mix(#c30,$maroon,70%);
243
+ }
244
+
245
+ /* Literal.String.Double */
246
+ .highlight .se {
247
+ color: mix(#c30,$maroon,70%);
248
+ }
249
+
250
+ /* Literal.String.Escape */
251
+ .highlight .sh {
252
+ color: mix(#c30,$maroon,70%);
253
+ }
254
+
255
+ /* Literal.String.Heredoc */
256
+ .highlight .si {
257
+ color: mix(#a00,$maroon,70%);
258
+ }
259
+
260
+ /* Literal.String.Interpol */
261
+ .highlight .sx {
262
+ color: mix(#c30,$maroon,70%);
263
+ }
264
+
265
+ /* Literal.String.Other */
266
+ .highlight .sr {
267
+ color: mix(#3aa,$maroon,70%);
268
+ }
269
+
270
+ /* Literal.String.Regex */
271
+ .highlight .s1 {
272
+ color: mix(#c30,$maroon,70%);
273
+ }
274
+
275
+ /* Literal.String.Single */
276
+ .highlight .ss {
277
+ color: mix(#fc3,$maroon,70%);
278
+ }
279
+
280
+ /* Literal.String.Symbol */
281
+ .highlight .bp {
282
+ color: mix(#366,$maroon,70%);
283
+ }
284
+
285
+ /* Name.Builtin.Pseudo */
286
+ .highlight .vc {
287
+ color: mix(#033,$maroon,70%);
288
+ }
289
+
290
+ /* Name.Variable.Class */
291
+ .highlight .vg {
292
+ color: mix(#033,$maroon,70%);
293
+ }
294
+
295
+ /* Name.Variable.Global */
296
+ .highlight .vi {
297
+ color: mix(#033,$maroon,70%);
298
+ }
299
+
300
+ /* Name.Variable.Instance */
301
+ .highlight .il {
302
+ color: mix(#f60,$maroon,70%);
303
+ }
304
+
305
+ /* Literal.Number.Integer.Long */
306
+ .css .o,
307
+ .css .o + .nt,
308
+ .css .nt + .nt {
309
+ color: mix(#999,$maroon,70%);
310
+ }
@@ -0,0 +1,63 @@
1
+ .highlight .hll { background-color: #ffffcc }
2
+ .highlight .c { color: #5F5A60; font-style: italic } /* Comment */
3
+ .highlight .err { border:#B22518; } /* Error */
4
+ .highlight .k { color: #CDA869 } /* Keyword */
5
+ .highlight .cm { color: #5F5A60; font-style: italic } /* Comment.Multiline */
6
+ .highlight .cp { color: #5F5A60 } /* Comment.Preproc */
7
+ .highlight .c1 { color: #5F5A60; font-style: italic } /* Comment.Single */
8
+ .highlight .cs { color: #5F5A60; font-style: italic } /* Comment.Special */
9
+ .highlight .gd { background: #420E09 } /* Generic.Deleted */
10
+ .highlight .ge { font-style: italic } /* Generic.Emph */
11
+ .highlight .gr { background: #B22518 } /* Generic.Error */
12
+ .highlight .gh { color: #0000c0; font-weight: bold } /* Generic.Heading */
13
+ .highlight .gi { background: #253B22 } /* Generic.Inserted */
14
+ .highlight .go { } /* Generic.Output */
15
+ .highlight .gp { font-weight: bold } /* Generic.Prompt */
16
+ .highlight .gs { font-weight: bold } /* Generic.Strong */
17
+ .highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
18
+ .highlight .gt { } /* Generic.Traceback */
19
+ .highlight .kc { color: #CDA869; } /* Keyword.Constant */
20
+ .highlight .kd { color: #CDA869; } /* Keyword.Declaration */
21
+ .highlight .kn { } /* Keyword.Namespace */
22
+ .highlight .kp { color: #9B703F } /* Keyword.Pseudo */
23
+ .highlight .kr { } /* Keyword.Reserved */
24
+ .highlight .kt { color: #9B859D } /* Keyword.Type */
25
+ .highlight .m { color: #CF6A4C } /* Literal.Number */
26
+ .highlight .s { color: #8F9D6A } /* Literal.String */
27
+ .highlight .na { color: #F9EE98 } /* Name.Attribute */
28
+ .highlight .nb { color: #CDA869 } /* Name.Builtin */
29
+ .highlight .nc { color: #9B859D; font-weight: bold } /* Name.Class */
30
+ .highlight .no { color: #9B859D } /* Name.Constant */
31
+ .highlight .nd { color: #7587A6 } /* Name.Decorator */
32
+ .highlight .ni { color: #CF6A4C; font-weight: bold } /* Name.Entity */
33
+ .highlight .nf { color: #e9df8f }
34
+ .highlight .nn { color: #9B859D; } /* Name.Namespace */
35
+ .highlight .nt { color: #CDA869; } /* Name.Tag */
36
+ .highlight .nv { } /* Name.Variable */
37
+ .highlight .ow { color: #AA22FF; } /* Operator.Word */
38
+ .highlight .w { color: #141414 } /* Text.Whitespace */
39
+ .highlight .mf { color: #CF6A4C } /* Literal.Number.Float */
40
+ .highlight .mh { color: #CF6A4C } /* Literal.Number.Hex */
41
+ .highlight .mi { color: #CF6A4C } /* Literal.Number.Integer */
42
+ .highlight .mo { color: #CF6A4C } /* Literal.Number.Oct */
43
+ .highlight .sb { color: #8F9D6A } /* Literal.String.Backtick */
44
+ .highlight .sc { color: #8F9D6A } /* Literal.String.Char */
45
+ .highlight .sd { color: #8F9D6A; } /* Literal.String.Doc */
46
+ .highlight .s2 { color: #8F9D6A } /* Literal.String.Double */
47
+ .highlight .se { color: #F9EE98; } /* Literal.String.Escape */
48
+ .highlight .sh { color: #8F9D6A } /* Literal.String.Heredoc */
49
+ .highlight .si { color: #DAEFA3; } /* Literal.String.Interpol */
50
+ .highlight .sx { color: #8F9D6A } /* Literal.String.Other */
51
+ .highlight .sr { color: #E9C062 } /* Literal.String.Regex */
52
+ .highlight .s1 { color: #8F9D6A } /* Literal.String.Single */
53
+ .highlight .ss { color: #CF6A4C } /* Literal.String.Symbol */
54
+ .highlight .vc { color: #7587A6 } /* Name.Variable.Class */
55
+ .highlight .vg { color: #7587A6 } /* Name.Variable.Global */
56
+ .highlight .vi { color: #7587A6 } /* Name.Variable.Instance */
57
+ .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
58
+
59
+ // some hacks to improve swift highlighting
60
+ .highlight .language-swift .kd+.nf,
61
+ .highlight .language-swift .kd+.kt { color: inherit; }
62
+ .highlight .language-swift .o+.n { color: #7587A6 }
63
+ .highlight .language-swift .nv+.o+.n { color: inherit; }