“Como colorir a imagem SVG em CSS” Respostas de código

Alterar a cor SVG na tag IMG

<svg>
    <use href="logo.svg" style="--color_fill: #000;"></use>
</svg>
Sparkling Seahorse

Como colorir a imagem SVG em CSS

/*
	You have to apply a filter, this works for any kink of image
    Play with hue-rotate and saturate to find the color you want
*/
#svg{
    filter: invert(100%) sepia(100%) saturate(1000%) hue-rotate(280deg);
 }
Norman

Alterar a cor SVG na tag IMG

.logo {
  background-color: red;
  -webkit-mask: url(logo.svg) no-repeat center;
  mask: url(logo.svg) no-repeat center;
}
Sparkling Seahorse

Respostas semelhantes a “Como colorir a imagem SVG em CSS”

Perguntas semelhantes a “Como colorir a imagem SVG em CSS”

Mais respostas relacionadas para “Como colorir a imagem SVG em CSS” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código