// foundation.zurb.com
// Licensed under MIT Open Source
-////
-/// @group typography
-////
+/// If `true`, all elements will have transparent backgrounds when printed, to save on ink.
+/// @type Boolean
+/// @group global
+$print-transparent-backgrounds: true !default;
// scss-lint:disable all
@media print {
* {
- background: transparent !important;
+ @if $print-transparent-backgrounds {
+ background: transparent !important;
+ }
+
color: black !important; // Black prints faster: h5bp.com/s
box-shadow: none !important;
text-shadow: none !important;