Html – Calc with a multivalue css variable
I want to make a hover effect over a p-tag, when hovered the background should get darker. I used filter:brightness(85%) but this made also the text darker. Here is my css. :root { --my-color:193 55% 40% } p { background-color:hsl(var(--my-color));…