FontAwesome instagram icon - colorized

后端 未结 3 2033
深忆病人
深忆病人 2021-02-19 11:32

Any one know how to show the FontAwesome icon for Instagram and style it to be shown with the new Instagram icon multi colors? New instagram icon

3条回答
  •  花落未央
    2021-02-19 11:46

    I was trying to do the same. I found this is solution after several attempt.

    .fa.fa-instagram {
      color: transparent;
      background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
      background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
      background-clip: text;
      -webkit-background-clip: text;
    }
    
    
    
      
    
    
    
      
    
    
    

提交回复
热议问题