---
title: "Remove Gray Filter from Web Page"
date: 2022-12-01T15:43:46.000Z
author: Z.SHINCHVEN
tags: [CSS]
canonical: https://atlassc.net/2022/12/02/anti-grayfilter
---
Everytime when some important person deceases, most websites put on a gray filter to mourn.

Since it is a CSS trick, the filter can be removed by browser extension easily.

Install a browser extension like [Stylus](https://chrome.google.com/webstore/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne/related) for Chrome, 
and add the following CSS style to the extension, the gray witchcraft shall be lifted for good:

### Remove All filter

```CSS
* {
    -webkit-filter: none !important;
    filter: none !important;
}
```

### Remove Filter From HTML Tag Only

```CSS
html {
    -webkit-filter: none !important;
    filter: none !important;
}

```
