7 ms·
If you have red-green blindness like me try this: - Right-click the image and select "Inspect". - Add a new CSS hue-rotate filter to the element: element
by Muehe 2y ago
If you have red-green blindness like me try this:
- Right-click the image and select "Inspect".
- Add a new CSS hue-rotate filter to the element:
element {
max-width: 100%;
margin: 0 auto;
filter: hue-rotate(-90deg);
}
Usually I use "filter: saturate(100);", but that didn't really work well for this image. You might have to adjust the rotation degree though, -90 worked best for me.