全站变灰

技术教程
全站变灰

添加自定义css到主题就行了,全站就会加上灰色滤镜。

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

评论