3 /// Default global Bourbon settings. Values in this map are overwritten by any
4 /// values set in the `$bourbon` map.
8 /// @property {color} contrast-switch-dark-color [#000]
9 /// Global dark color for the `contrast-switch` function.
11 /// @property {color} contrast-switch-light-color [#fff]
12 /// Global light color for the `contrast-switch` function.
14 /// @property {list} global-font-file-formats [("ttf", "woff2", "woff")]
15 /// Global font file formats for the `font-face` mixin.
17 /// @property {number (with unit)} modular-scale-base [1em]
18 /// Global base value for the `modular-scale` function.
20 /// @property {number (unitless)} modular-scale-ratio [$major-third (1.25)]
21 /// Global base ratio for the `modular-scale` function.
23 /// @property {boolean} rails-asset-pipeline [false]
24 /// Set this to `true` when using the Rails Asset Pipeline and Bourbon will
25 /// write asset paths using
26 /// [sass-rails’ asset helpers](https://github.com/rails/sass-rails#asset-helpers).
31 "contrast-switch-dark-color": #000,
32 "contrast-switch-light-color": #fff,
33 "global-font-file-formats": ("ttf", "woff2", "woff"),
34 "modular-scale-base": 1em,
35 "modular-scale-ratio": $major-third,
36 "rails-asset-pipeline": false,
39 /// Global Bourbon settings.
45 /// @property {color} contrast-switch-dark-color [#000]
46 /// Global dark color for the `contrast-switch` function.
48 /// @property {color} contrast-switch-light-color [#fff]
49 /// Global light color for the `contrast-switch` function.
51 /// @property {list} global-font-file-formats [("ttf", "woff2", "woff")]
52 /// Global font file formats for the `font-face` mixin.
54 /// @property {number (with unit)} modular-scale-base [1em]
55 /// Global base value for the `modular-scale` function.
57 /// @property {number (unitless)} modular-scale-ratio [$major-third (1.25)]
58 /// Global base ratio for the `modular-scale` function.
60 /// @property {boolean} rails-asset-pipeline [false]
61 /// Set this to `true` when using the Rails Asset Pipeline and Bourbon will
62 /// write asset paths using
63 /// [sass-rails’ asset helpers](https://github.com/rails/sass-rails#asset-helpers).
67 /// "contrast-switch-dark-color": #000,
68 /// "contrast-switch-light-color": #fff,
69 /// "global-font-file-formats": ("ttf", "woff2", "woff"),
70 /// "modular-scale-base": 1em,
71 /// "modular-scale-ratio": $major-third,
72 /// "rails-asset-pipeline": false,
75 $bourbon: () !default;