Skip to content

Instantly share code, notes, and snippets.

@samzeng
Last active December 1, 2022 01:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samzeng/9d4adb642fff07f687c9f480a776af16 to your computer and use it in GitHub Desktop.
Save samzeng/9d4adb642fff07f687c9f480a776af16 to your computer and use it in GitHub Desktop.
Make the website grey
.page--gray {
filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
filter: gray;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment