通过在主题CSS文件中为 `html` 标签添加 `filter: grayscale(100%);` 及其兼容性前缀代码,可以快速将网站整体变为黑白色调。
愿 逝者安息
愿 生者奋发
愿 祖国昌盛
编辑主题的CSS文件,添加以下代码。
/*网站黑白化*/
html{
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: url("data:image/svg+xml;utf8,#grayscale");
filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
-webkit-filter: grayscale(1);
}

微信
很实用了