使用线性渐变制作 CSS 颜色

Make CSS color with linear Gradients

我是CSS用户的新手,我很喜欢这个颜色。有谁知道怎么把背景颜色弄成我指吹的图那样吗?

我尝试使用线性渐变,但没有成功。

试试这个代码

从此页面生成https://cssgradient.io/

.ht{
background: rgb(77,77,77);
background: linear-gradient(180deg, rgba(77,77,77,1) 0%, rgba(42,42,42,1) 100%, rgba(0,212,255,1) 100%);width:500px;height:500px;
}
<div class="ht"><h1>Cool Background </h1></div>