I have my this color variable in root pseudo class
:root {
--color-tertiary-light : #2998ff;
}
This is working
background-color: var(--color-tertiary-light);
but i want some transparency as rgba gives but this is not working
background-color: rgba(var(--color-tertiary-light),.7);
Why this is not working