Error: Function rgb is missing argument $green in SASS

Error: Function rgb is missing argument $green in SASS

我在使用 SCSS
写入 CSS 文件时遇到错误 错误如下:

Error: Function RGB is missing in argument $green.
       on line 116 of sass/c:\Users\User\Desktop\This PC\style.scss
>>     background-color:RGB(111 197 236 / 49%);

HTML和SCSS代码如下:

.header-hover:hover{
    background-color: rgb(111 197 236 / 49%);
}
<i class="fa-solid fa-angle-right icon less header-hover"></i>

我使用了很棒的字体来获取图标。

sass 还没有赶上新标准所以尝试使用 rgba(111, 197, 236, 0.49); 而不是 rgb(111 197 236 / 49%)