DEV Community

Rachel Fazio for CodeNewbie

Posted on

What Tools Do You Use To Make Your Products More Accessible?

Hey hey!

CodeNewbie Podcast is coming out with a new episode tomorrow with Daniel Devesa Derksen-Staats about his route to a career in accessibility, making code more accessible, and the importance of adding accessibility into our coding tool kits.


Here is our link to where you can await the new episode, or you can find it wherever you listen to your podcasts tomorrow!


Accessibility is important in product development because it advocates for the creation of products that can be used by people of all abilities. There are a huge amount of tools to help test accessibility across different platforms for a range of abilities, whether they be related to vision, hearing, cognition, speech, and/or mobility. While creating a product that meets accessibility guidelines, we must continually test different frameworks through a variety of resources to create the most inclusive design.

So, my question for you all is: what resources, websites, books, and other tools have you used to test and improve the accessibility of your products?

Top comments (3)

Collapse
 
rachelfazio profile image
Rachel Fazio

Me again (lol), my most constantly used accessibility tool is definitely a contrast checker for colors! My fav is the standard

, but I also use

Coolors - The super fast color palettes generator!

Generate or browse beautiful color combinations for your designs.

  <div class="color-secondary fs-s flex items-center">
      <img
        alt="favicon"
        class="c-embed__favicon m-0 mr-2 radius-0"
        src="https://coolors.co/assets/img/favicon.png"
        loading="lazy" />
    coolors.co
  </div>
</div>
Enter fullscreen mode Exit fullscreen mode

to help me source colors when I am feeling super stuck about a color theme!
Collapse
 
bias profile image
Tobias Nickel

axe core is pretty good

Collapse
 
rachelfazio profile image
Rachel Fazio

Love this! Thank you for sharing