switch to black SVGs with coloring voodoo

This commit is contained in:
Christopher Teutsch
2020-04-15 21:52:10 +02:00
parent f122b20360
commit 8d72089286
13 changed files with 252 additions and 2409 deletions

44
assets/css/filter.svg Normal file
View File

@ -0,0 +1,44 @@
<svg xmlns="http://www.w3.org/2000/svg">
<filter id="brown">
<feColorMatrix type="matrix" values="
0 0 0 0 0.6471
0 0 0 0 0.1647
0 0 0 0 0.1647
0 0 0 1 0" color-interpolation-filters="sRGB"/>
</filter>
<filter id="red">
<feColorMatrix type="matrix" values="
0 0 0 0 1
0 0 0 0 0
0 0 0 0 0
0 0 0 1 0"/>
</filter>
<filter id="green">
<feColorMatrix type="matrix" values="
0 0 0 0 0
0 0 0 0 0.5
0 0 0 0 0
0 0 0 1 0"/>
</filter>
<filter id="blue">
<feColorMatrix type="matrix" values="
0 0 0 0 0
0 0 0 0 0
0 0 0 0 1
0 0 0 1 0"/>
</filter>
<filter id="fdd835">
<feColorMatrix type="matrix" values="
0 0 0 0 0.9922
0 0 0 0 0.8471
0 0 0 0 0.2078
0 0 0 1 0" color-interpolation-filters="sRGB"/>
</filter>
<filter id="orange">
<feColorMatrix type="matrix" values="
0 0 0 0 1
0 0 0 0 0.6471
0 0 0 0 0
0 0 0 1 0" color-interpolation-filters="sRGB"/>
</filter>
</svg>

After

Width:  |  Height:  |  Size: 855 B