Date: 2023-11-08
Accepted
We need to make our UI accessible for people with disabilities.
We will use:
CSS prefers-reduced-transparency to reduce transparency effects for people with visual impairments.
Example:
.bg-white {
@media (prefers-reduced-transparency: reduce) {
--tw-bg-opacity: 0;
}
}
- We will be able to make our UI accessible for people with disabilities.