# postcss-colorblind **Repository Path**: mirrors_skratchdot/postcss-colorblind ## Basic Information - **Project Name**: postcss-colorblind - **Description**: A PostCSS plugin for seeing your site as a colorblind person may. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # PostCSS Colorblind Plugin ## Why? The biggest reason is that as many developers don't have problems seeing color, they never stop to consider that their (or their constituents') choices of colors make their website unusuable and frustrating to those who can't see some shades of color. It's not even small problem either; lots of people struggle with red and green. However, there are JavaScript bookmarklets that let you do this on the fly without having to run a build step. I built this with the thought in mind you could create an automated step to create a report of how you're doing with color. And lastly, building plugins for PostCSS is so damn easy and fun. ## Install `npm install postcss-colorblind` ## Setup To make this module as effective as possible, make this the last module that modifies your CSS. ```javascript var fs = require("fs") var postcss = require("postcss") var colorblindPlugin = require("postcss-colorblind"); var css = fs.readFileSync("input.css", "utf8"); var processed = postcss() .use(colorblindPlugin(method:{'achromatopsia'})) .process(css) .css; fs.writeFileSync('output.css', processed); ``` ## Parameters ### method _(default: deuteranopia)_ The module expects an object with a method name that it can give to the [color-blind](https://github.com/skratchdot/color-blind) module. Thus, as of writing, any of the following will work: - protanomaly - protanopia - deuteranomaly - deuteranopia - tritanomaly - tritanopia - achromatomaly - achromatopsia ## Color Blindness Table Borrowed from @skratchdot's [color-blind](https://github.com/skratchdot/color-blind), the dependency of this module. | Group | | | | |----------------------------------------------------|------------------------------------|-----------------------------|--------------------------| | **Trichromat**
*3 good cones* |Normal | | | | **Anomalous Trichromat**
*2 good cones, 1 bad* |Protanomaly
*low red* |Deuteranomaly
*low green*|Tritanomaly
*low blue*| | **Dichromat**
*2 good cones, 1 blind* |Protanopia
*no red* |Deuteranopia
*no green* |Tritanopia
*no blue* | | **Monochromat**
*1 good cone, 2 blind/bad* |Achromatomaly
*almost no color*|Achromatopsia
*no color* | | ## Examples All colors, no filter: ![All colors](img/all.jpg) Deuteranopia, no green: ![Deuteranopia](img/deuteranopia.jpg) Achromatopsia, no color: ![Achromatopsia](img/achromatopsia.jpg) ## License MIT ## Author :heart: [Brian Holt](http://twitter.com/holtbt)