“Imagem cor CSS” Respostas de código

Filtro para CSS White Color

.custom-2 {
  filter:  brightness(0) invert(1);
}
Anxious Ape

imagem de fundo do CSS

background-image: url("image.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
Unusual Unicorn

CSS Alterar a cor da imagem

/* use a black image */

/* change image color to white */
filter: invert(100%) sepia(16%) saturate(7463%) hue-rotate(222deg) brightness(119%) contrast(115%);

/* change image color to red */
filter: invert(16%) sepia(99%) saturate(7404%) hue-rotate(4deg) brightness(95%) contrast(118%);

/* change image color to green */
filter: invert(26%) sepia(89%) saturate(1583%) hue-rotate(95deg) brightness(96%) contrast(106%);

/* change image color to blue */
filter: invert(10%) sepia(90%) saturate(5268%) hue-rotate(245deg) brightness(109%) contrast(155%);
Rudolph Steyn

Imagem cor CSS

img{
filter: opacity(0.4) drop-shadow(0 0 0 red); 
}
Fabio Gourye

Como adicionar cor a uma imagem CSS

.box-2:before {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(125, 2, 150, 0.5);
      transition: background .3s linear;
}

    .box-2 {
      position: relative;
      float: left;
      cursor: pointer;
}
Anthony Smith

Alterar a cor da imagem com CSS

.star-rating span{   filter: invert(298%) sepia(152%) saturate(659%) hue-rotate(300deg) brightness(94%) contrast(245%);}
Nutty Nightingale

Respostas semelhantes a “Imagem cor CSS”

Perguntas semelhantes a “Imagem cor CSS”

Mais respostas relacionadas para “Imagem cor CSS” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código