Hello,
It seems that the alpha channel of text color is ignored in the SVG serialization.
For instance, the following example :
@startuml
skinparam shadowing false
note as n
<color:#FF000020>⬤</color>
<color:#FF000080>⬤</color>
<color:#FF0000FF>⬤</color>
end note
state A #FF000020
state B #FF000080
state C #FF0000FF
@enduml
Displays correctly in PNG:

but not in SVG (alpha works for state colors, but not for text color in the note):

Thanks,
Fred