circle {
fill: rgba(248, 248, 248, 0.5);
}
<svg width='400' height='400'>
<circle r='100' cx='200' cy='200'></circle>
</svg>
rgb code works for this, but I found rgba doesn't work. The shapes become invisible. I tested this on Chrome and Firefox.
Am I missing something else here?