DEV Community

Discussion on: What would be a technical solution to ✔️ not looking good on dark mode?

Collapse
 
samuraiseoul profile image
Sophie The Lionhart • Edited

Go to compart.com/en/unicode/search?q=ch... it is a list of unicode checkmarks(emoji is there too).

Once there, run this in the console to make all of them red or whatever color you like to see which change. document.querySelectorAll('.char').forEach(element => element.style.color = 'red');

Edit: After that of course, pick one and switch it.