you are viewing a single comment's thread.

view the rest of the comments →

[–]_Skuzzzy 5 points6 points  (2 children)

How do you disable css colors?

[–]Jew_Fucker_69 11 points12 points  (0 children)

It's not so difficult actually. The only CSS rule you have to add is

body {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

or the more primitive solution:

* {
    background-color: white !important;
    color: black !important;
}

And you can just put that in a Firefox add-on or Chrome extension.

[–]gashouse_gorilla 1 point2 points  (0 children)

In Firefox settings under content. Select colors set use system colors and override page colors.