filter background color css code example
Example 1: filter for css white color
.custom-2 {
filter: brightness(0) invert(1);
}
Example 2: css backdrop filter blut
backdrop-filter: blur(2px);
Example 3: css filter color
.text {
background: rgba(0,0,0,.9);
backdrop-filter: grayscale(1) contrast(3) blur(1px);
}