본문 바로가기
CSS/CSS 응용

css 만으로 PNG 이미지 색상 바꾸기

by 알찬 퍼블리셔 2023. 2. 28.
728x90
반응형

https://codepen.io/sosuke/pen/Pjoqqp

 

CSS filter generator to convert from black to target hex color

Added License 2022-07-15; this is retroactive for whatever help that is. 0-clause Free BSD License Permission to use, copy, modify, and/or distribute...

codepen.io

 

누군가 만들어둔 위 프로젝트에 들어가서 원하는 색상을 입력하면 filter 값을 만들어준다!

해당 값을 복사해서 원하는 CSS에 아래처럼 넣어주면 끝! 

 

.button:hover .arrow {
  filter: invert(100%) sepia(52%) saturate(20%) hue-rotate(315deg)
    brightness(103%) contrast(108%);
}
728x90
반응형

댓글