📜  使用过滤器将颜色更改为白色 svg - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:48.292000             🧑  作者: Mango

代码示例1
body {
  background-color: #dadada;
}

.custom-1 {
  filter: invert(0.5);
}

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