SVG Filter
Calculate from RGB-Value
------------------------
#b51f2a => 181/31/42
181/255 = 0.70980
31/255 = 0.12156
42/255 = 0.16470
Create SVG
----------
<svg xmlns="http://www.w3.org/2000/svg" class="d-block" width="0" height="0" viewBox="0 0 0 0">
<defs>
<filter id="eocjs-svg-filter-primary" color-interpolation-filters="sRGB">
<feColorMatrix type="matrix"
values="0 0 0 0 0.70980
0 0 0 0 0.12156
0 0 0 0 0.16470
0 0 0 1 0"/>
</filter>
</defs>
</svg>