I've been struggling to recreate the CSS gradient, so here's what I'm aiming for: https://i.sstatic.net/4gIHV.png
Here are the details: Gradient colors: Start color: #1696B6 with 50% opacity End color: Black with 100% transparency
https://i.sstatic.net/AKe4p.png
I've attempted the following: $gradiant-background-dark-theme: linear-gradient(#1696b6, black, #1696b6); https://i.sstatic.net/j4jzE.png I'm in need of some assistance.
.gradient{
height:200px;
width:400px;
background: linear-gradient(#1696b6, black, #1696b6)
}
<div class='gradient'>test</div>