Light Dark Css
body.light + .mat-medium {
background: rgba(246,246,246,0.60);
backdrop-filter: blur(30px) saturate(1);
}
<body class="light">
<div class="mat-medium"></div>
</body>
I was hoping that the div would display the mat-medium
class because the body had the class light
but it displayed a blank div.
View the repl.