Css color properties; RGB, RGBA, HSL, HSLA
// RGB //
#rounded1{
background:rgb(255,0,0);
}
// RGBA //
#rounded1{
background:rgb(255,0,0,0.3);
}
// HSL //
#rounded1{
background:hsl(120, 100%, 50%);
}
// HSLA //
#rounded1{
background:hsla(120, 100%, 50%, 0.3);
}