Suit | Pin stripe

by PhilQ

HTML

<div id="test"></div>

SCSS

$color1: #1D3144;
$color2: #294C60;
html, body {width: 100%; height: 100%;}
#test {
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(
		-60deg,
		$color1,
		$color1 23px,
		$color2 23px,
		$color2 25px
	);
}