RT Adam Argyle
LET CSS PICK AN ACCESSIBLE COLOR!
`color-contrast()` will automatically pick a color that passes contrast ratios, just give it a list to choose from. aka: throw colors at it!
```#css
body {
background: var(--blue2);
color: var(--onblue2);
}
```
Adam Argyle: Red won!
```#css
color-contrast(black vs blue, red, green)
```
This function returns the color which contrasts the most with the 1st color.
⚠️ LET CSS ENSURE YOU PASS CONTRAST SCORES ⚠️