doggystyle 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (294) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +16 -0
  3. data/.hound.yml +5 -0
  4. data/.npmignore +18 -0
  5. data/.ruby-version +1 -0
  6. data/.scss-lint.yml +243 -0
  7. data/.travis.yml +5 -0
  8. data/CHANGELOG.md +5 -0
  9. data/Gemfile +4 -0
  10. data/LICENSE.txt +21 -0
  11. data/README.md +40 -0
  12. data/RELEASING.md +1 -0
  13. data/Rakefile +9 -0
  14. data/bin/doggystyle +5 -0
  15. data/bower.json +38 -0
  16. data/circle.yml +13 -0
  17. data/core/_imports.scss +229 -0
  18. data/core/animations/_jump.scss +7 -0
  19. data/core/animations/_shake.scss +24 -0
  20. data/core/animations/_wobble.scss +8 -0
  21. data/core/functions/_mobile-first.scss +3 -0
  22. data/core/functions/_opposite-direction.scss +45 -0
  23. data/core/functions/casts/_to-bool.scss +19 -0
  24. data/core/functions/casts/_to-color.scss +74 -0
  25. data/core/functions/casts/_to-list.scss +38 -0
  26. data/core/functions/casts/_to-map.scss +27 -0
  27. data/core/functions/casts/_to-null.scss +15 -0
  28. data/core/functions/casts/_to-number.scss +66 -0
  29. data/core/functions/casts/_to-string.scss +15 -0
  30. data/core/functions/colours/_colour-contrast.scss +61 -0
  31. data/core/functions/colours/_colour.scss +69 -0
  32. data/core/functions/colours/_random-colour.scss +78 -0
  33. data/core/functions/lists/_contains.scss +62 -0
  34. data/core/functions/lists/_first.scss +19 -0
  35. data/core/functions/lists/_insert-nth.scss +37 -0
  36. data/core/functions/lists/_last.scss +11 -0
  37. data/core/functions/lists/_merge.scss +30 -0
  38. data/core/functions/lists/_prepend.scss +11 -0
  39. data/core/functions/lists/_remove-nth.scss +53 -0
  40. data/core/functions/lists/_remove.scss +30 -0
  41. data/core/functions/lists/_replace-nth.scss +55 -0
  42. data/core/functions/lists/_replace.scss +36 -0
  43. data/core/functions/lists/_reverse.scss +31 -0
  44. data/core/functions/lists/_second.scss +19 -0
  45. data/core/functions/lists/_shift.scss +24 -0
  46. data/core/functions/lists/_slice.scss +52 -0
  47. data/core/functions/lists/_sort.scss +51 -0
  48. data/core/functions/maps/_map-deep-get.scss +51 -0
  49. data/core/functions/maps/_map-deep-set.scss +34 -0
  50. data/core/functions/maps/_map-depth.scss +23 -0
  51. data/core/functions/maps/_map-extend.scss +47 -0
  52. data/core/functions/maps/_map-has-keys.scss +23 -0
  53. data/core/functions/maps/_map-has-nested-keys.scss +24 -0
  54. data/core/functions/maps/_map-set.scss +4 -0
  55. data/core/functions/maps/_map-zip.scss +50 -0
  56. data/core/functions/numbers/_add-unit.scss +54 -0
  57. data/core/functions/numbers/_pad.scss +16 -0
  58. data/core/functions/numbers/_spacer.scss +16 -0
  59. data/core/functions/numbers/_strip.scss +29 -0
  60. data/core/functions/numbers/_units.scss +17 -0
  61. data/core/functions/svg/_dots.scss +84 -0
  62. data/core/functions/svg/_fake-radius.scss +131 -0
  63. data/core/functions/svg/_lines.scss +76 -0
  64. data/core/functions/svg/_svg.scss +12 -0
  65. data/core/functions/text/_smart-lineheight.scss +13 -0
  66. data/core/functions/text/_string-explode.scss +45 -0
  67. data/core/functions/text/_string-replace.scss +38 -0
  68. data/core/helpers/_custom-elements.scss +114 -0
  69. data/core/helpers/_eases.scss +44 -0
  70. data/core/helpers/_reset.scss +282 -0
  71. data/core/helpers/_show-breakpoints.scss +25 -0
  72. data/core/helpers/_strings.scss +648 -0
  73. data/core/helpers/_warnings.scss +3 -0
  74. data/core/helpers/checks/_check.scss +69 -0
  75. data/core/helpers/checks/_is-absolute-length.scss +25 -0
  76. data/core/helpers/checks/_is-angel.scss +25 -0
  77. data/core/helpers/checks/_is-arglist.scss +11 -0
  78. data/core/helpers/checks/_is-bool.scss +23 -0
  79. data/core/helpers/checks/_is-calc.scss +11 -0
  80. data/core/helpers/checks/_is-colour.scss +23 -0
  81. data/core/helpers/checks/_is-dark.scss +14 -0
  82. data/core/helpers/checks/_is-duration.scss +15 -0
  83. data/core/helpers/checks/_is-false.scss +13 -0
  84. data/core/helpers/checks/_is-first-character.scss +11 -0
  85. data/core/helpers/checks/_is-frequency.scss +15 -0
  86. data/core/helpers/checks/_is-function.scss +44 -0
  87. data/core/helpers/checks/_is-integer.scss +15 -0
  88. data/core/helpers/checks/_is-length.scss +16 -0
  89. data/core/helpers/checks/_is-light.scss +14 -0
  90. data/core/helpers/checks/_is-list.scss +11 -0
  91. data/core/helpers/checks/_is-map.scss +11 -0
  92. data/core/helpers/checks/_is-null.scss +11 -0
  93. data/core/helpers/checks/_is-number.scss +19 -0
  94. data/core/helpers/checks/_is-percentage.scss +13 -0
  95. data/core/helpers/checks/_is-position.scss +16 -0
  96. data/core/helpers/checks/_is-pseudo.scss +24 -0
  97. data/core/helpers/checks/_is-relative-length.scss +25 -0
  98. data/core/helpers/checks/_is-resolution.scss +15 -0
  99. data/core/helpers/checks/_is-selector.scss +3 -0
  100. data/core/helpers/checks/_is-string.scss +11 -0
  101. data/core/helpers/checks/_is-time.scss +15 -0
  102. data/core/helpers/checks/_is-unit.scss +16 -0
  103. data/core/helpers/private/_arglist-to-list.scss +36 -0
  104. data/core/helpers/private/_brightness.scss +13 -0
  105. data/core/helpers/private/_find-digits.scss +41 -0
  106. data/core/helpers/private/_find-integer.scss +40 -0
  107. data/core/helpers/private/_from-hex.scss +48 -0
  108. data/core/helpers/private/_from-hsl.scss +55 -0
  109. data/core/helpers/private/_from-rgb.scss +55 -0
  110. data/core/helpers/private/_get-color-value.scss +26 -0
  111. data/core/helpers/private/_hash-fix.scss +15 -0
  112. data/core/helpers/private/_hex-to-dec.scss +28 -0
  113. data/core/helpers/private/_length.scss +26 -0
  114. data/core/helpers/private/_lightness.scss +15 -0
  115. data/core/helpers/private/_list-items-to-strings.scss +8 -0
  116. data/core/helpers/private/_min-max-number.scss +12 -0
  117. data/core/helpers/private/_pow.scss +29 -0
  118. data/core/helpers/private/_string-compare.scss +38 -0
  119. data/core/helpers/private/_string-explode.scss +43 -0
  120. data/core/helpers/private/_sudo.scss +23 -0
  121. data/core/helpers/symbols/_arrows.scss +337 -0
  122. data/core/helpers/symbols/_block.scss +97 -0
  123. data/core/helpers/symbols/_box.scss +385 -0
  124. data/core/helpers/symbols/_common.scss +101 -0
  125. data/core/helpers/symbols/_currency.scss +82 -0
  126. data/core/helpers/symbols/_dingbats.scss +565 -0
  127. data/core/helpers/symbols/_geometric.scss +289 -0
  128. data/core/helpers/symbols/_letterlike.scss +235 -0
  129. data/core/helpers/symbols/_misc.scss +568 -0
  130. data/core/helpers/symbols/_operators.scss +766 -0
  131. data/core/helpers/symbols/_punctuation.scss +214 -0
  132. data/core/mixins/_align.scss +15 -0
  133. data/core/mixins/_animate.scss +16 -0
  134. data/core/mixins/_aspect-ratio.scss +86 -0
  135. data/core/mixins/_backface-visibility.scss +7 -0
  136. data/core/mixins/_background-image.scss +13 -0
  137. data/core/mixins/_blend.scss +10 -0
  138. data/core/mixins/_blendmodes.scss +24 -0
  139. data/core/mixins/_border-radius.scss +105 -0
  140. data/core/mixins/_browsers.scss +155 -0
  141. data/core/mixins/_bulletpoint.scss +12 -0
  142. data/core/mixins/_center.scss +3 -0
  143. data/core/mixins/_clearfix.scss +7 -0
  144. data/core/mixins/_columns.scss +22 -0
  145. data/core/mixins/_custom-property.scss +15 -0
  146. data/core/mixins/_devices.scss +97 -0
  147. data/core/mixins/_dropdown.scss +38 -0
  148. data/core/mixins/_fake-radius.scss +99 -0
  149. data/core/mixins/_filters.scss +163 -0
  150. data/core/mixins/_flip.scss +11 -0
  151. data/core/mixins/_font-face.scss +11 -0
  152. data/core/mixins/_fontsize.scss +126 -0
  153. data/core/mixins/_gallery.scss +134 -0
  154. data/core/mixins/_gradient.scss +72 -0
  155. data/core/mixins/_image-size.scss +18 -0
  156. data/core/mixins/_image.scss +12 -0
  157. data/core/mixins/_inputs.scss +18 -0
  158. data/core/mixins/_keyframes.scss +8 -0
  159. data/core/mixins/_last.scss +5 -0
  160. data/core/mixins/_nth-last.scss +7 -0
  161. data/core/mixins/_nth.scss +10 -0
  162. data/core/mixins/_placeholder.scss +15 -0
  163. data/core/mixins/_prefixer.scss +55 -0
  164. data/core/mixins/_selection.scss +15 -0
  165. data/core/mixins/_shadow.scss +7 -0
  166. data/core/mixins/_size.scss +13 -0
  167. data/core/mixins/_smart-horizontal.scss +21 -0
  168. data/core/mixins/_sudo-image.scss +12 -0
  169. data/core/mixins/_text-shadow.scss +30 -0
  170. data/core/mixins/_transforms.scss +264 -0
  171. data/core/mixins/_transition.scss +189 -0
  172. data/core/mixins/_triangle-classic.scss +170 -0
  173. data/core/mixins/_triangle.scss +250 -0
  174. data/core/mixins/_unwrap.scss +5 -0
  175. data/core/mixins/_user-select.scss +5 -0
  176. data/core/mixins/_vertical.scss +10 -0
  177. data/core/mixins/columns/_columns.scss +92 -0
  178. data/core/mixins/flexbox/_flex-container.scss +201 -0
  179. data/core/mixins/flexbox/_flex-grid.scss +235 -0
  180. data/core/mixins/flexbox/_flex-items.scss +140 -0
  181. data/core/mixins/flexbox/_flex-remove.scss +12 -0
  182. data/core/mixins/grid/_break-between.scss +6 -0
  183. data/core/mixins/grid/_grid.scss +150 -0
  184. data/core/mixins/svg/_svg-size.scss +4 -0
  185. data/core/mixins/svg/_svg.scss +9 -0
  186. data/core/placeholders/_clear.scss +27 -0
  187. data/core/placeholders/_cursor.scss +35 -0
  188. data/core/placeholders/_misc.scss +20 -0
  189. data/core/placeholders/_rendering.scss +21 -0
  190. data/core/placeholders/_text.scss +41 -0
  191. data/core/settings/_colours.scss +30 -0
  192. data/core/settings/_directories.scss +7 -0
  193. data/core/settings/_global.scss +14 -0
  194. data/core/settings/_grid.scss +24 -0
  195. data/core/settings/_padding.scss +8 -0
  196. data/core/settings/_spacing.scss +8 -0
  197. data/core/settings/_text.scss +13 -0
  198. data/doggystyle.gemspec +29 -0
  199. data/eyeglass-exports.js +7 -0
  200. data/features/install.feature +29 -0
  201. data/features/step_definitions/doggystyle_steps.rb +31 -0
  202. data/features/support/bourbon_support.rb +19 -0
  203. data/features/support/env.rb +1 -0
  204. data/features/update.feature +30 -0
  205. data/features/version.feature +5 -0
  206. data/index.js +7 -0
  207. data/lib/doggystyle.rb +7 -0
  208. data/lib/doggystyle/generator.rb +81 -0
  209. data/lib/doggystyle/version.rb +3 -0
  210. data/package.json +33 -0
  211. data/spec/doggystyle/library/border_color_spec.rb +51 -0
  212. data/spec/doggystyle/library/border_radius_spec.rb +25 -0
  213. data/spec/doggystyle/library/border_style_spec.rb +51 -0
  214. data/spec/doggystyle/library/border_width_spec.rb +51 -0
  215. data/spec/doggystyle/library/buttons_spec.rb +53 -0
  216. data/spec/doggystyle/library/clearfix_spec.rb +18 -0
  217. data/spec/doggystyle/library/contrast_switch_spec.rb +23 -0
  218. data/spec/doggystyle/library/ellipsis_spec.rb +20 -0
  219. data/spec/doggystyle/library/font_face_spec_1.rb +16 -0
  220. data/spec/doggystyle/library/font_face_spec_2.rb +21 -0
  221. data/spec/doggystyle/library/font_face_spec_3.rb +16 -0
  222. data/spec/doggystyle/library/font_face_spec_4.rb +17 -0
  223. data/spec/doggystyle/library/font_stacks_spec.rb +40 -0
  224. data/spec/doggystyle/library/hide_text_spec.rb +17 -0
  225. data/spec/doggystyle/library/hide_visually_spec.rb +35 -0
  226. data/spec/doggystyle/library/margin_spec.rb +51 -0
  227. data/spec/doggystyle/library/modular_scale_spec.rb +43 -0
  228. data/spec/doggystyle/library/padding_spec.rb +51 -0
  229. data/spec/doggystyle/library/position_spec.rb +67 -0
  230. data/spec/doggystyle/library/prefixer_spec.rb +34 -0
  231. data/spec/doggystyle/library/shade_spec.rb +31 -0
  232. data/spec/doggystyle/library/size_spec.rb +31 -0
  233. data/spec/doggystyle/library/strip_unit_spec.rb +31 -0
  234. data/spec/doggystyle/library/text_inputs_spec.rb +75 -0
  235. data/spec/doggystyle/library/tint_spec.rb +31 -0
  236. data/spec/doggystyle/library/triangle_spec.rb +31 -0
  237. data/spec/doggystyle/library/word_wrap_spec.rb +29 -0
  238. data/spec/doggystyle/utilities/assign_inputs_spec.rb +50 -0
  239. data/spec/doggystyle/utilities/collapse_directionals.rb +25 -0
  240. data/spec/doggystyle/utilities/directional_values_spec.rb +21 -0
  241. data/spec/doggystyle/utilities/font_source_declaration_spec.rb +29 -0
  242. data/spec/doggystyle/utilities/retrieve_bourbon_setting_spec.rb +31 -0
  243. data/spec/doggystyle/utilities/unpack_spec.rb +32 -0
  244. data/spec/doggystyle/validators/contains_spec.rb +27 -0
  245. data/spec/doggystyle/validators/is_length_spec.rb +49 -0
  246. data/spec/doggystyle/validators/is_light_spec.rb +37 -0
  247. data/spec/doggystyle/validators/is_number_spec.rb +43 -0
  248. data/spec/doggystyle/validators/is_size_spec.rb +43 -0
  249. data/spec/fixtures/_setup.scss +1 -0
  250. data/spec/fixtures/library/border-color.scss +26 -0
  251. data/spec/fixtures/library/border-radius.scss +17 -0
  252. data/spec/fixtures/library/border-style.scss +21 -0
  253. data/spec/fixtures/library/border-width.scss +21 -0
  254. data/spec/fixtures/library/buttons.scss +17 -0
  255. data/spec/fixtures/library/clearfix.scss +5 -0
  256. data/spec/fixtures/library/contrast-switch.scss +9 -0
  257. data/spec/fixtures/library/ellipsis.scss +5 -0
  258. data/spec/fixtures/library/font-face-1.scss +6 -0
  259. data/spec/fixtures/library/font-face-2.scss +10 -0
  260. data/spec/fixtures/library/font-face-3.scss +8 -0
  261. data/spec/fixtures/library/font-face-4.scss +7 -0
  262. data/spec/fixtures/library/font-stacks.scss +41 -0
  263. data/spec/fixtures/library/hide-text.scss +5 -0
  264. data/spec/fixtures/library/hide-visually.scss +9 -0
  265. data/spec/fixtures/library/margin.scss +21 -0
  266. data/spec/fixtures/library/modular-scale.scss +29 -0
  267. data/spec/fixtures/library/padding.scss +21 -0
  268. data/spec/fixtures/library/position.scss +25 -0
  269. data/spec/fixtures/library/prefixer.scss +13 -0
  270. data/spec/fixtures/library/shade.scss +17 -0
  271. data/spec/fixtures/library/size.scss +13 -0
  272. data/spec/fixtures/library/strip-unit.scss +17 -0
  273. data/spec/fixtures/library/text-inputs.scss +21 -0
  274. data/spec/fixtures/library/tint.scss +17 -0
  275. data/spec/fixtures/library/triangle.scss +9 -0
  276. data/spec/fixtures/library/word-wrap.scss +9 -0
  277. data/spec/fixtures/utilities/assign-inputs.scss +19 -0
  278. data/spec/fixtures/utilities/collapse-directionals.scss +17 -0
  279. data/spec/fixtures/utilities/directional-values.scss +13 -0
  280. data/spec/fixtures/utilities/font-source-declaration.scss +11 -0
  281. data/spec/fixtures/utilities/retrieve-bourbon-setting.scss +16 -0
  282. data/spec/fixtures/utilities/unpack.scss +17 -0
  283. data/spec/fixtures/validators/contains.scss +28 -0
  284. data/spec/fixtures/validators/is-length.scss +35 -0
  285. data/spec/fixtures/validators/is-light.scss +29 -0
  286. data/spec/fixtures/validators/is-number.scss +31 -0
  287. data/spec/fixtures/validators/is-size.scss +31 -0
  288. data/spec/spec_helper.rb +22 -0
  289. data/spec/support/matchers/have_rule.rb +35 -0
  290. data/spec/support/matchers/have_ruleset.rb +20 -0
  291. data/spec/support/matchers/have_value.rb +17 -0
  292. data/spec/support/parser_support.rb +16 -0
  293. data/spec/support/sass_support.rb +10 -0
  294. metadata +527 -0
@@ -0,0 +1,97 @@
1
+ @charset "UTF-8";
2
+
3
+ // ▀ Upper Half Block
4
+ $upper-half-block : "/2580";
5
+
6
+ // ▁ Lower One Eighth Block
7
+ $lower-one-eighth-block : "/2581";
8
+
9
+ // ▂ Lower One Quarter Block
10
+ $lower-one-quarter-block : "/2582";
11
+
12
+ // ▃ Lower Three Eighths Block
13
+ $lower-three-eighths-block : "/2583";
14
+
15
+ // ▄ Lower Half Block
16
+ $lower-half-block : "/2584";
17
+
18
+ // ▅ Lower Five Eighths Block
19
+ $lower-five-eighths-block : "/2585";
20
+
21
+ // ▆ Lower Three Quarters Block
22
+ $lower-three-quarters-block : "/2586";
23
+
24
+ // ▇ Lower Seven Eighths Block
25
+ $lower-seven-eighths-block : "/2587";
26
+
27
+ // █ Full Block
28
+ $full-block : "/2588";
29
+
30
+ // ▉ Left Seven Eighths Block
31
+ $left-seven-eighths-block : "/2589";
32
+
33
+ // ▊ Left Three Quarters Block
34
+ $left-three-quarters-block : "/258A";
35
+
36
+ // ▋ Left Five Eighths Block
37
+ $left-five-eighths-block : "/258B";
38
+
39
+ // ▌ Left Half Block
40
+ $left-half-block : "/258C";
41
+
42
+ // ▍ Left Three Eighths Block
43
+ $left-three-eighths-block : "/258D";
44
+
45
+ // ▎ Left One Quarter Block
46
+ $left-one-quarter-block : "/258E";
47
+
48
+ // ▏ Left One Eighth Block
49
+ $left-one-eighth-block : "/258F";
50
+
51
+ // ▐ Right Half Block
52
+ $right-half-block : "/2590";
53
+
54
+ // ░ Light Shade
55
+ $light-shade : "/2591";
56
+
57
+ // ▒ Medium Shade
58
+ $medium-shade : "/2592";
59
+
60
+ // ▓ Dark Shade
61
+ $dark-shade : "/2593";
62
+
63
+ // ▔ Upper One Eighth Block
64
+ $upper-one-eighth-block : "/2594";
65
+
66
+ // ▕ Right One Eighth Block
67
+ $right-one-eighth-block : "/2595";
68
+
69
+ // ▖ Quadrant Lower Left
70
+ $quadrant-lower-left : "/2596";
71
+
72
+ // ▗ Quadrant Lower Right
73
+ $quadrant-lower-right : "/2597";
74
+
75
+ // ▘ Quadrant Upper Left
76
+ $quadrant-upper-left : "/2598";
77
+
78
+ // ▙ Quadrant Upper Left And Lower Left And Lower Right
79
+ $quadrant-upper-left-and-lower-left-and-lower-right : "/2599";
80
+
81
+ // ▚ Quadrant Upper Left And Lower Right
82
+ $quadrant-upper-left-and-lower-right : "/259A";
83
+
84
+ // ▛ Quadrant Upper Left And Upper Right And Lower Left
85
+ $quadrant-upper-left-and-upper-right-and-lower-left : "/259B";
86
+
87
+ // ▜ Quadrant Upper Left And Upper Right And Lower Right
88
+ $quadrant-upper-left-and-upper-right-and-lower-right : "/259C";
89
+
90
+ // ▝ Quadrant Upper Right
91
+ $quadrant-upper-right : "/259D";
92
+
93
+ // ▞ Quadrant Upper Right And Lower Left
94
+ $quadrant-upper-right-and-lower-left : "/259E";
95
+
96
+ // ▟ Quadrant Upper Right And Lower Left And Lower Right
97
+ $quadrant-upper-right-and-lower-left-and-lower-right : "/259F";
@@ -0,0 +1,385 @@
1
+ @charset "UTF-8";
2
+
3
+ // ─ Box Drawings Light Horizontal
4
+ $box-drawings-light-horizontal : "/2500";
5
+
6
+ // ━ Box Drawings Heavy Horizontal
7
+ $box-drawings-heavy-horizontal : "/2501";
8
+
9
+ // │ Box Drawings Light Vertical
10
+ $box-drawings-light-vertical : "/2502";
11
+
12
+ // ┃ Box Drawings Heavy Vertical
13
+ $box-drawings-heavy-vertical : "/2503";
14
+
15
+ // ┄ Box Drawings Light Triple Dash Horizontal
16
+ $box-drawings-light-triple-dash-horizontal : "/2504";
17
+
18
+ // ┅ Box Drawings Heavy Triple Dash Horizontal
19
+ $box-drawings-heavy-triple-dash-horizontal : "/2505";
20
+
21
+ // ┆ Box Drawings Light Triple Dash Vertical
22
+ $box-drawings-light-triple-dash-vertical : "/2506";
23
+
24
+ // ┇ Box Drawings Heavy Triple Dash Vertical
25
+ $box-drawings-heavy-triple-dash-vertical : "/2507";
26
+
27
+ // ┈ Box Drawings Light Quadruple Dash Horizontal
28
+ $box-drawings-light-quadruple-dash-horizontal : "/2508";
29
+
30
+ // ┉ Box Drawings Heavy Quadruple Dash Horizontal
31
+ $box-drawings-heavy-quadruple-dash-horizontal : "/2509";
32
+
33
+ // ┊ Box Drawings Light Quadruple Dash Vertical
34
+ $box-drawings-light-quadruple-dash-vertical : "/250A";
35
+
36
+ // ┋ Box Drawings Heavy Quadruple Dash Vertical
37
+ $box-drawings-heavy-quadruple-dash-vertical : "/250B";
38
+
39
+ // ┌ Box Drawings Light Down And Right
40
+ $box-drawings-light-down-and-right : "/250C";
41
+
42
+ // ┍ Box Drawings Down Light And Right Heavy
43
+ $box-drawings-down-light-and-right-heavy : "/250D";
44
+
45
+ // ┎ Box Drawings Down Heavy And Right Light
46
+ $box-drawings-down-heavy-and-right-light : "/250E";
47
+
48
+ // ┏ Box Drawings Heavy Down And Right
49
+ $box-drawings-heavy-down-and-right : "/250F";
50
+
51
+ // ┐ Box Drawings Light Down And Left
52
+ $box-drawings-light-down-and-left : "/2510";
53
+
54
+ // ┑ Box Drawings Down Light And Left Heavy
55
+ $box-drawings-down-light-and-left-heavy : "/2511";
56
+
57
+ // ┒ Box Drawings Down Heavy And Left Light
58
+ $box-drawings-down-heavy-and-left-light : "/2512";
59
+
60
+ // ┓ Box Drawings Heavy Down And Left
61
+ $box-drawings-heavy-down-and-left : "/2513";
62
+
63
+ // └ Box Drawings Light Up And Right
64
+ $box-drawings-light-up-and-right : "/2514";
65
+
66
+ // ┕ Box Drawings Up Light And Right Heavy
67
+ $box-drawings-up-light-and-right-heavy : "/2515";
68
+
69
+ // ┖ Box Drawings Up Heavy And Right Light
70
+ $box-drawings-up-heavy-and-right-light : "/2516";
71
+
72
+ // ┗ Box Drawings Heavy Up And Right
73
+ $box-drawings-heavy-up-and-right : "/2517";
74
+
75
+ // ┘ Box Drawings Light Up And Left
76
+ $box-drawings-light-up-and-left : "/2518";
77
+
78
+ // ┙ Box Drawings Up Light And Left Heavy
79
+ $box-drawings-up-light-and-left-heavy : "/2519";
80
+
81
+ // ┚ Box Drawings Up Heavy And Left Light
82
+ $box-drawings-up-heavy-and-left-light : "/251A";
83
+
84
+ // ┛ Box Drawings Heavy Up And Left
85
+ $box-drawings-heavy-up-and-left : "/251B";
86
+
87
+ // ├ Box Drawings Light Vertical And Right
88
+ $box-drawings-light-vertical-and-right : "/251C";
89
+
90
+ // ┝ Box Drawings Vertical Light And Right Heavy
91
+ $box-drawings-vertical-light-and-right-heavy : "/251D";
92
+
93
+ // ┞ Box Drawings Up Heavy And Right Down Light
94
+ $box-drawings-up-heavy-and-right-down-light : "/251E";
95
+
96
+ // ┟ Box Drawings Down Heavy And Right Up Light
97
+ $box-drawings-down-heavy-and-right-up-light : "/251F";
98
+
99
+ // ┠ Box Drawings Vertical Heavy And Right Light
100
+ $box-drawings-vertical-heavy-and-right-light : "/2520";
101
+
102
+ // ┡ Box Drawings Down Light And Right Up Heavy
103
+ $box-drawings-down-light-and-right-up-heavy : "/2521";
104
+
105
+ // ┢ Box Drawings Up Light And Right Down Heavy
106
+ $box-drawings-up-light-and-right-down-heavy : "/2522";
107
+
108
+ // ┣ Box Drawings Heavy Vertical And Right
109
+ $box-drawings-heavy-vertical-and-right : "/2523";
110
+
111
+ // ┤ Box Drawings Light Vertical And Left
112
+ $box-drawings-light-vertical-and-left : "/2524";
113
+
114
+ // ┥ Box Drawings Vertical Light And Left Heavy
115
+ $box-drawings-vertical-light-and-left-heavy : "/2525";
116
+
117
+ // ┦ Box Drawings Up Heavy And Left Down Light
118
+ $box-drawings-up-heavy-and-left-down-light : "/2526";
119
+
120
+ // ┧ Box Drawings Down Heavy And Left Up Light
121
+ $box-drawings-down-heavy-and-left-up-light : "/2527";
122
+
123
+ // ┨ Box Drawings Vertical Heavy And Left Light
124
+ $box-drawings-vertical-heavy-and-left-light : "/2528";
125
+
126
+ // ┩ Box Drawings Down Light And Left Up Heavy
127
+ $box-drawings-down-light-and-left-up-heavy : "/2529";
128
+
129
+ // ┪ Box Drawings Up Light And Left Down Heavy
130
+ $box-drawings-up-light-and-left-down-heavy : "/252A";
131
+
132
+ // ┫ Box Drawings Heavy Vertical And Left
133
+ $box-drawings-heavy-vertical-and-left : "/252B";
134
+
135
+ // ┬ Box Drawings Light Down And Horizontal
136
+ $box-drawings-light-down-and-horizontal : "/252C";
137
+
138
+ // ┭ Box Drawings Left Heavy And Right Down Light
139
+ $box-drawings-left-heavy-and-right-down-light : "/252D";
140
+
141
+ // ┮ Box Drawings Right Heavy And Left Down Light
142
+ $box-drawings-right-heavy-and-left-down-light : "/252E";
143
+
144
+ // ┯ Box Drawings Down Light And Horizontal Heavy
145
+ $box-drawings-down-light-and-horizontal-heavy : "/252F";
146
+
147
+ // ┰ Box Drawings Down Heavy And Horizontal Light
148
+ $box-drawings-down-heavy-and-horizontal-light : "/2530";
149
+
150
+ // ┱ Box Drawings Right Light And Left Down Heavy
151
+ $box-drawings-right-light-and-left-down-heavy : "/2531";
152
+
153
+ // ┲ Box Drawings Left Light And Right Down Heavy
154
+ $box-drawings-left-light-and-right-down-heavy : "/2532";
155
+
156
+ // ┳ Box Drawings Heavy Down And Horizontal
157
+ $box-drawings-heavy-down-and-horizontal : "/2533";
158
+
159
+ // ┴ Box Drawings Light Up And Horizontal
160
+ $box-drawings-light-up-and-horizontal : "/2534";
161
+
162
+ // ┵ Box Drawings Left Heavy And Right Up Light
163
+ $box-drawings-left-heavy-and-right-up-light : "/2535";
164
+
165
+ // ┶ Box Drawings Right Heavy And Left Up Light
166
+ $box-drawings-right-heavy-and-left-up-light : "/2536";
167
+
168
+ // ┷ Box Drawings Up Light And Horizontal Heavy
169
+ $box-drawings-up-light-and-horizontal-heavy : "/2537";
170
+
171
+ // ┸ Box Drawings Up Heavy And Horizontal Light
172
+ $box-drawings-up-heavy-and-horizontal-light : "/2538";
173
+
174
+ // ┹ Box Drawings Right Light And Left Up Heavy
175
+ $box-drawings-right-light-and-left-up-heavy : "/2539";
176
+
177
+ // ┺ Box Drawings Left Light And Right Up Heavy
178
+ $box-drawings-left-light-and-right-up-heavy : "/253A";
179
+
180
+ // ┻ Box Drawings Heavy Up And Horizontal
181
+ $box-drawings-heavy-up-and-horizontal : "/253B";
182
+
183
+ // ┼ Box Drawings Light Vertical And Horizontal
184
+ $box-drawings-light-vertical-and-horizontal : "/253C";
185
+
186
+ // ┽ Box Drawings Left Heavy And Right Vertical Light
187
+ $box-drawings-left-heavy-and-right-vertical-light : "/253D";
188
+
189
+ // ┾ Box Drawings Right Heavy And Left Vertical Light
190
+ $box-drawings-right-heavy-and-left-vertical-light : "/253E";
191
+
192
+ // ┿ Box Drawings Vertical Light And Horizontal Heavy
193
+ $box-drawings-vertical-light-and-horizontal-heavy : "/253F";
194
+
195
+ // ╀ Box Drawings Up Heavy And Down Horizontal Light
196
+ $box-drawings-up-heavy-and-down-horizontal-light : "/2540";
197
+
198
+ // ╁ Box Drawings Down Heavy And Up Horizontal Light
199
+ $box-drawings-down-heavy-and-up-horizontal-light : "/2541";
200
+
201
+ // ╂ Box Drawings Vertical Heavy And Horizontal Light
202
+ $box-drawings-vertical-heavy-and-horizontal-light : "/2542";
203
+
204
+ // ╃ Box Drawings Left Up Heavy And Right Down Light
205
+ $box-drawings-left-up-heavy-and-right-down-light : "/2543";
206
+
207
+ // ╄ Box Drawings Right Up Heavy And Left Down Light
208
+ $box-drawings-right-up-heavy-and-left-down-light : "/2544";
209
+
210
+ // ╅ Box Drawings Left Down Heavy And Right Up Light
211
+ $box-drawings-left-down-heavy-and-right-up-light : "/2545";
212
+
213
+ // ╆ Box Drawings Right Down Heavy And Left Up Light
214
+ $box-drawings-right-down-heavy-and-left-up-light : "/2546";
215
+
216
+ // ╇ Box Drawings Down Light And Up Horizontal Heavy
217
+ $box-drawings-down-light-and-up-horizontal-heavy : "/2547";
218
+
219
+ // ╈ Box Drawings Up Light And Down Horizontal Heavy
220
+ $box-drawings-up-light-and-down-horizontal-heavy : "/2548";
221
+
222
+ // ╉ Box Drawings Right Light And Left Vertical Heavy
223
+ $box-drawings-right-light-and-left-vertical-heavy : "/2549";
224
+
225
+ // ╊ Box Drawings Left Light And Right Vertical Heavy
226
+ $box-drawings-left-light-and-right-vertical-heavy : "/254A";
227
+
228
+ // ╋ Box Drawings Heavy Vertical And Horizontal
229
+ $box-drawings-heavy-vertical-and-horizontal : "/254B";
230
+
231
+ // ╌ Box Drawings Light Double Dash Horizontal
232
+ $box-drawings-light-double-dash-horizontal : "/254C";
233
+
234
+ // ╍ Box Drawings Heavy Double Dash Horizontal
235
+ $box-drawings-heavy-double-dash-horizontal : "/254D";
236
+
237
+ // ╎ Box Drawings Light Double Dash Vertical
238
+ $box-drawings-light-double-dash-vertical : "/254E";
239
+
240
+ // ╏ Box Drawings Heavy Double Dash Vertical
241
+ $box-drawings-heavy-double-dash-vertical : "/254F";
242
+
243
+ // ═ Box Drawings Double Horizontal
244
+ $box-drawings-double-horizontal : "/2550";
245
+
246
+ // ║ Box Drawings Double Vertical
247
+ $box-drawings-double-vertical : "/2551";
248
+
249
+ // ╒ Box Drawings Down Single And Right Double
250
+ $box-drawings-down-single-and-right-double : "/2552";
251
+
252
+ // ╓ Box Drawings Down Double And Right Single
253
+ $box-drawings-down-double-and-right-single : "/2553";
254
+
255
+ // ╔ Box Drawings Double Down And Right
256
+ $box-drawings-double-down-and-right : "/2554";
257
+
258
+ // ╕ Box Drawings Down Single And Left Double
259
+ $box-drawings-down-single-and-left-double : "/2555";
260
+
261
+ // ╖ Box Drawings Down Double And Left Single
262
+ $box-drawings-down-double-and-left-single : "/2556";
263
+
264
+ // ╗ Box Drawings Double Down And Left
265
+ $box-drawings-double-down-and-left : "/2557";
266
+
267
+ // ╘ Box Drawings Up Single And Right Double
268
+ $box-drawings-up-single-and-right-double : "/2558";
269
+
270
+ // ╙ Box Drawings Up Double And Right Single
271
+ $box-drawings-up-double-and-right-single : "/2559";
272
+
273
+ // ╚ Box Drawings Double Up And Right
274
+ $box-drawings-double-up-and-right : "/255A";
275
+
276
+ // ╛ Box Drawings Up Single And Left Double
277
+ $box-drawings-up-single-and-left-double : "/255B";
278
+
279
+ // ╜ Box Drawings Up Double And Left Single
280
+ $box-drawings-up-double-and-left-single : "/255C";
281
+
282
+ // ╝ Box Drawings Double Up And Left
283
+ $box-drawings-double-up-and-left : "/255D";
284
+
285
+ // ╞ Box Drawings Vertical Single And Right Double
286
+ $box-drawings-vertical-single-and-right-double : "/255E";
287
+
288
+ // ╟ Box Drawings Vertical Double And Right Single
289
+ $box-drawings-vertical-double-and-right-single : "/255F";
290
+
291
+ // ╠ Box Drawings Double Vertical And Right
292
+ $box-drawings-double-vertical-and-right : "/2560";
293
+
294
+ // ╡ Box Drawings Vertical Single And Left Double
295
+ $box-drawings-vertical-single-and-left-double : "/2561";
296
+
297
+ // ╢ Box Drawings Vertical Double And Left Single
298
+ $box-drawings-vertical-double-and-left-single : "/2562";
299
+
300
+ // ╣ Box Drawings Double Vertical And Left
301
+ $box-drawings-double-vertical-and-left : "/2563";
302
+
303
+ // ╤ Box Drawings Down Single And Horizontal Double
304
+ $box-drawings-down-single-and-horizontal-double : "/2564";
305
+
306
+ // ╥ Box Drawings Down Double And Horizontal Single
307
+ $box-drawings-down-double-and-horizontal-single : "/2565";
308
+
309
+ // ╦ Box Drawings Double Down And Horizontal
310
+ $box-drawings-double-down-and-horizontal : "/2566";
311
+
312
+ // ╧ Box Drawings Up Single And Horizontal Double
313
+ $box-drawings-up-single-and-horizontal-double : "/2567";
314
+
315
+ // ╨ Box Drawings Up Double And Horizontal Single
316
+ $box-drawings-up-double-and-horizontal-single : "/2568";
317
+
318
+ // ╩ Box Drawings Double Up And Horizontal
319
+ $box-drawings-double-up-and-horizontal : "/2569";
320
+
321
+ // ╪ Box Drawings Vertical Single And Horizontal Double
322
+ $box-drawings-vertical-single-and-horizontal-double : "/256A";
323
+
324
+ // ╫ Box Drawings Vertical Double And Horizontal Single
325
+ $box-drawings-vertical-double-and-horizontal-single : "/256B";
326
+
327
+ // ╬ Box Drawings Double Vertical And Horizontal
328
+ $box-drawings-double-vertical-and-horizontal : "/256C";
329
+
330
+ // ╭ Box Drawings Light Arc Down And Right
331
+ $box-drawings-light-arc-down-and-right : "/256D";
332
+
333
+ // ╮ Box Drawings Light Arc Down And Left
334
+ $box-drawings-light-arc-down-and-left : "/256E";
335
+
336
+ // ╯ Box Drawings Light Arc Up And Left
337
+ $box-drawings-light-arc-up-and-left : "/256F";
338
+
339
+ // ╰ Box Drawings Light Arc Up And Right
340
+ $box-drawings-light-arc-up-and-right : "/2570";
341
+
342
+ // ╱ Box Drawings Light Diagonal Upper Right To Lower Left
343
+ $box-drawings-light-diagonal-upper-right-to-lower-left : "/2571";
344
+
345
+ // ╲ Box Drawings Light Diagonal Upper Left To Lower Right
346
+ $box-drawings-light-diagonal-upper-left-to-lower-right : "/2572";
347
+
348
+ // ╳ Box Drawings Light Diagonal Cross
349
+ $box-drawings-light-diagonal-cross : "/2573";
350
+
351
+ // ╴ Box Drawings Light Left
352
+ $box-drawings-light-left : "/2574";
353
+
354
+ // ╵ Box Drawings Light Up
355
+ $box-drawings-light-up : "/2575";
356
+
357
+ // ╶ Box Drawings Light Right
358
+ $box-drawings-light-right : "/2576";
359
+
360
+ // ╷ Box Drawings Light Down
361
+ $box-drawings-light-down : "/2577";
362
+
363
+ // ╸ Box Drawings Heavy Left
364
+ $box-drawings-heavy-left : "/2578";
365
+
366
+ // ╹ Box Drawings Heavy Up
367
+ $box-drawings-heavy-up : "/2579";
368
+
369
+ // ╺ Box Drawings Heavy Right
370
+ $box-drawings-heavy-right : "/257A";
371
+
372
+ // ╻ Box Drawings Heavy Down
373
+ $box-drawings-heavy-down : "/257B";
374
+
375
+ // ╼ Box Drawings Light Left And Heavy Right
376
+ $box-drawings-light-left-and-heavy-right : "/257C";
377
+
378
+ // ╽ Box Drawings Light Up And Heavy Down
379
+ $box-drawings-light-up-and-heavy-down : "/257D";
380
+
381
+ // ╾ Box Drawings Heavy Left And Light Right
382
+ $box-drawings-heavy-left-and-light-right : "/257E";
383
+
384
+ // ╿ Box Drawings Heavy Up And Light Down
385
+ $box-drawings-heavy-up-and-light-down : "/257F";