.hr-fade { height: 1px; width: 100%; @include themify($themes) { color: themed('hr-color'); background-image: linear-gradient( 90deg, transparent, themed('hr-color') 50%, transparent 100% ); } } .hr-slash { width: 100%; height: 7px; background-size: 10px 10px; @include themify($themes) { color: themed('hr-color'); background-image: linear-gradient(-45deg, transparent, transparent 25%, currentColor 25%, currentColor 50%, transparent 50%, transparent 75%, currentColor 75% ); } } .hr-dots { @include themify($themes) { $color: themed('hr-color'); color: $color; width: 100%; border-width: 0 0 7px; border-style: solid; border-image: url('data:image/svg+xml,') 0 0 100% repeat; } }