I am trying to apply a filter of not(.pseudo-element)
using JavaScript, but I am unsure how to add it. So far, I have been able to extract #app from the DOM with the following code:
const app = document.getElementById('app')
app.style.filter = 'brightness(0.5)'
Now my objective is to apply this brightness
filter to all child elements except for one. How can I achieve this using JavaScript?